Cutting stuff out.
[wolnelektury.git] / src / ajaxable / templates / ajaxable / form.html
1 <h1>{{ title }}</h1>
2
3 <form action="{% if action_url %}{% url action_url %}{% else %}{{ action }}{% endif %}{% if action_query %}?{{ action_query }}{% endif %}" method="post" accept-charset="utf-8"
4       class="cuteform">
5   {% csrf_token %}
6   {% if honeypot %}
7     {% load honeypot %}
8     {% render_honeypot_field %}
9   {% endif %}
10   {{ form.as_p }}
11   <p class="helptext">
12     {{ form.data_processing }}
13   </p>
14   <button>{{ submit }}</button>
15 </form>
16
17 <div class="form-extra">
18   {% block extra %}{% endblock %}
19 </div>