fix for django 1.10 (= in template)
[django-migdal.git] / migdal / templates / comments / form.html
1 {% load comments i18n %}
2 <div class="comment-form">
3 <h2 class="section">{% trans "Add comment" %}</h2>
4 <form class="submit-form" action="{% comment_form_target %}" method="post">{% csrf_token %}
5   {% if next %}<input type="hidden" name="next" value="{{ next }}" />{% endif %}
6   {% for field in form %}
7     {% if field.is_hidden %}
8       {{ field }}
9     {% endif %}
10   {% endfor %}
11   <table>
12   {% for field in form %}
13     {% if not field.is_hidden %}
14       <tr
15         {% if field.name == "honeypot" %} style="display:none;"{% endif %}>
16         <th>{{ field.label_tag }}
17       </th><td>
18         {% if field.errors %}<p class="error">{{ field.errors }}</p>{% endif %}
19         {{ field }}
20       </td></tr>
21     {% endif %}
22   {% endfor %}
23   <tr><td></td><td>
24     <button type="submit" name="post" class="submit-post">{% trans "Post" %}</button>
25     <button type="submit" name="preview" class="submit-preview">{% trans "Preview" %}</button>
26   </td></tr>
27   </table>
28 </form>
29 </div>