d92b3404e2a61dc826fa0271805909fdc530a965
[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   {{ form.as_p }}
13   <p class="helptext">
14     {{ form.data_processing }}
15   </p>
16   <button>{{ submit }}</button>
17 </form>
18
19 <div class="form-extra">
20   {% block extra %}{% endblock %}
21 </div>