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