fixes
[wolnelektury.git] / src / newsletter / templates / newsletter / subscribe_form.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load honeypot %}
4 {% load ajaxable_tags %}
5
6 {% block body %}
7   <h1>{{ page_title }}</h1>
8   <form id="subscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
9     {% csrf_token %}
10     {% render_honeypot_field %}
11     <ol>
12       <li>{{ form.email|pretty_field }}</li>
13       <li><span class="helptext">{{ form.data_processing }}</span></li>
14       <li><input type="submit" value="{% trans "Subscribe" %}"/></li>
15     </ol>
16   </form>
17 {% endblock %}