Merge branch 'master' of github.com:fnp/wolnelektury
[wolnelektury.git] / apps / ajaxable / templates / ajaxable / form.html
1 {% load i18n %}
2
3 <h1>{{ title }}</h1>
4
5 <form action="{{ request.get_full_path }}" 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 <ol>
13     <div id="id_{% if form_prefix %}{{ form_prefix }}-{% endif %}__all__"></div>
14     {{ form.as_ul }}
15     <li><input type="submit" value="{{ submit }}"/></li>
16 </ol>
17 </form>
18
19 {% block extra %}{% endblock %}