summaryrefslogtreecommitdiff
path: root/objectapp/templates/comments/objectapp/gbobject/form.html
blob: a61758dba3ac81888d2ae0e06f2fddafebfbc4a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% load comments i18n %}

<form action="{% comment_form_target %}" method="post">
  {% csrf_token %}
  <fieldset>
    <input type="hidden" name="next" value="{% url objectapp_discussion_success %}"/>
    <legend>{% trans "Post your comment" %}</legend>
    {% for field in form %}
    {% if field.is_hidden %}{{ field }}{% else %}
    <div{% if field.errors %} class="error"{% endif %}{% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}>
      {{ field.label_tag }}
      {% if field.errors %}{{ field.errors }}{% else %}<br />{% endif %}
      {{ field }}
    </div>
    {% 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>
  </fieldset>
</form>