fix
[wolnelektury.git] / src / catalogue / templates / catalogue / custom_pdf_form.html
1 {% load i18n %}
2 {% load honeypot %}
3 {% load ajaxable_tags %}
4
5 <h1>{% trans "Download custom PDF" %}</h1>
6
7 <form id='custom-pdf-form' action="" method="post" accept-charset="utf-8" class="cuteform">
8   {% csrf_token %}
9   {% render_honeypot_field %}
10   <ol>
11     {{ form.nofootnotes|pretty_checkbox }}
12     {{ form.nothemes|pretty_checkbox }}
13     {{ form.nowlfont|pretty_checkbox }}
14     {{ form.nocover|pretty_checkbox }}
15     {{ form.leading|pretty_field }}
16     {{ form.fontsize|pretty_field }}
17
18     <li><input type="submit" value="{% trans "Download" %}"/></li>
19   </ol>
20 </form>