3372d2f4c15810f510b7e5bbd4ff2c14179ad615
[wolnelektury.git] / src / newsletter / templates / newsletter / unsubscribe_form.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load ssify %}
4 {% load honeypot %}
5
6 {% block body %}
7   <h1>{{ page_title }}</h1>
8   <form id="unsubscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
9     {% ssi_csrf_token %}
10     {% render_honeypot_field %}
11     <ol>
12       {{ form.as_ul }}
13       <li><input type="submit" value="{% trans "Unsubscribe" %}"/></li>
14     </ol>
15   </form>
16 {% endblock %}