8cc30043d79c9b796f5c8a70c4202fedcc9c1243
[wolnelektury.git] / src / ajaxable / templates / ajaxable / form.html
1 {% load i18n %}
2
3 <h1>{{ title }}</h1>
4
5 <form action="{% if action_url %}{% url action_url %}{% else %}{{ action }}{% endif %}{% if action_query %}?{{ action_query }}{% endif %}" method="post" accept-charset="utf-8"
6       class="cuteform{% if placeholdize %} hidelabels{% endif %}">
7   {% csrf_token %}
8   {% if honeypot %}
9     {% load honeypot %}
10     {% render_honeypot_field %}
11   {% endif %}
12   {% if request.EXPERIMENTS.layout.value %}
13     {{ form.as_p }}
14     <p class="helptext">
15       {{ form.data_processing }}
16     </p>
17     <button>{{ submit }}</button>
18   {% else %}
19     <ol>
20       <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
21       {% block form_fields %}
22         {{ form.as_p }}
23       {% endblock %}
24       <li><input type="submit" value="{{ submit }}"/></li>
25   </ol>
26   {% endif %}
27 </form>
28
29 <div class="form-extra">
30   {% block extra %}{% endblock %}
31 </div>