From baf14633cbd8af6413290ccae5765aefd2a278a5 Mon Sep 17 00:00:00 2001 From: bnewbold Date: Mon, 20 Jun 2016 16:37:07 -0400 Subject: remove old django folder --- bn_django/templates/comments/preview.html | 69 ------------------------------- 1 file changed, 69 deletions(-) delete mode 100644 bn_django/templates/comments/preview.html (limited to 'bn_django/templates/comments/preview.html') diff --git a/bn_django/templates/comments/preview.html b/bn_django/templates/comments/preview.html deleted file mode 100644 index dbbc6c3..0000000 --- a/bn_django/templates/comments/preview.html +++ /dev/null @@ -1,69 +0,0 @@ -{% extends "base.html" %} -{% load i18n %} - -{% block title %}{% trans "Comment Submission" %}{% endblock %} - -{% block content %}
-
- {% load comments %} -
- {% if form.errors %} -

{% blocktrans count form.errors|length as counter %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}

- {% else %} -

{% trans "Preview your comment:" %}

- - -{% if comment.person_name %} - -{% else %} - -{% endif %} -
- Posted by - {% if comment.person_name %}{{ comment.person_name}}{% else %}anonymous{% endif %}
- on - {{ comment.submit_date|date:"F j, Y" }}
- at {{ comment.submit_date|date:"H:i T" }} -
- {% if comment.headline %} - {{ comment.headline|escape|wordwrap:80 }} -
- {% endif %} - {{ comment|escape|wordwrap:80 }} -
- Posted by - {% if comment.user.username %} {{ comment.user.username }} - {% else %}{{ comment.user_name }} {% endif %}
- on - {{ comment.submit_date|date:"F j, Y" }}
- at {{ comment.submit_date|date:"H:i" }} -
- {% if comment.headline %} - {{ comment.headline|escape|wordwrap:80 }} -
- {% endif %} - {{ comment|escape|wordwrap:80 }} -
-

- {% trans "and" %} {% trans "or make changes" %}: -

- {% endif %} - - {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} - {% ifequal field.name "honeypot" %} - {{ field.label_tag }}{{ field }} - {% else %} - {% endifequal %} {% endif %} {% endfor %} - -
- - {{ field.label_tag }} - {{ field }} - {% if field.errors %}{{ field.errors }}{% endif %} -
- - - (no HTML or other markup) -
- -{% endblock %} -- cgit v1.2.3