13586ac9d75e01d9f177a5f80ed457abf451be55
[wolnelektury.git] / src / ajaxable / templates / ajaxable / form.html
1 {% load i18n %}
2 {% load ssi_csrf_token from ssify %}
3
4 <h1>{{ title }}</h1>
5
6 <form action="{{ request.get_full_path }}" method="post" accept-charset="utf-8"
7         class="cuteform{% if placeholdize %} hidelabels{% endif %}">
8 {% ssi_csrf_token %}
9 {% if honeypot %}
10     {% load honeypot %}
11     {% render_honeypot_field %}
12 {% endif %}
13 <ol>
14     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
15     {{ form.as_ul }}
16     <li><input type="submit" value="{{ submit }}"/></li>
17 </ol>
18 </form>
19
20 {% block extra %}{% endblock %}