diff options
Diffstat (limited to 'app/lib/django_comments/templates/comments/preview.html')
-rw-r--r-- | app/lib/django_comments/templates/comments/preview.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app/lib/django_comments/templates/comments/preview.html b/app/lib/django_comments/templates/comments/preview.html new file mode 100644 index 0000000..e335466 --- /dev/null +++ b/app/lib/django_comments/templates/comments/preview.html @@ -0,0 +1,40 @@ +{% extends "comments/base.html" %} +{% load i18n %} + +{% block title %}{% trans "Preview your comment" %}{% endblock %} + +{% block content %} + {% load comments %} + <form action="{% comment_form_target %}" method="post">{% csrf_token %} + {% if next %} + <div><input type="hidden" name="next" value="{{ next }}"/></div>{% endif %} + {% if form.errors %} + <h1>{% blocktrans count counter=form.errors|length %}Please correct the error below{% plural %}Please correct the errors below{% endblocktrans %}</h1> + {% else %} + <h1>{% trans "Preview your comment" %}</h1> + <blockquote>{{ comment|linebreaks }}</blockquote> + <p> + {% trans "and" %} <input id="submit" type="submit" name="submit" class="submit-post" + value="{% trans "Post your comment" %}"/> + {# Translators: This string follows the 'Post your comment' submit button. #} + {% trans "or make changes" %}: + </p> + {% endif %} + {% for field in form %} + {% if field.is_hidden %} + <div>{{ field }}</div> + {% else %} + {% if field.errors %}{{ field.errors }}{% endif %} + <p + {% if field.errors %} class="error"{% endif %} + {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> + {{ field.label_tag }} {{ field }} + </p> + {% endif %} + {% endfor %} + <p class="submit"> + <input type="submit" name="submit" class="submit-post" value="{% trans "Post" %}"/> + <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}"/> + </p> + </form> +{% endblock %} |