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