cfebdf39c59565958ec5eb606cdede025942b21e
[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   {% if request.EXPERIMENTS.layout.value %}
11     {{ form.as_p }}
12     <button type="submit">{% trans "Download" %}</button>
13   {% else %}
14   <ol>
15     {{ form.nofootnotes|pretty_checkbox }}
16     {{ form.nothemes|pretty_checkbox }}
17     {{ form.nowlfont|pretty_checkbox }}
18     {{ form.nocover|pretty_checkbox }}
19     {{ form.leading|pretty_field }}
20     {{ form.fontsize|pretty_field }}
21
22     <li><input type="submit" value="{% trans "Download" %}"/></li>
23   </ol>
24   {% endif %}
25 </form>