{% load comments i18n %} <div class="comment--form--wrapper"> <p class="comment--form--header">Your thoughts? Please leave a reply:</p> <form action="{% comment_form_target %}" method="post" class="comment--form"> {% if next %}<div><input type="hidden" name="next" value="{{ next }}" /></div>{% endif %} <input type="hidden" name="rder" value="{{ form.instance.content_object.get_absolute_url }}" /> {% 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="post" class="submit-post" value="{% trans "Post" %}" /> <input type="submit" name="preview" class="submit-preview" value="{% trans "Preview" %}" /> </p> </form> <p style="font-size: 95%;"><strong>All comments are moderated</strong>, so you won’t see it right away. And please remember Kurt Vonnegut's rule: “god damn it, you’ve got to be kind.” You can use Markdown or HTML to format your comments. The allowed tags are <code><b>, <i>, <em>, <strong>, <a></code>. To create a new paragraph hit return twice. </p> </div>