reformat templates
[wolnelektury.git] / src / suggest / templates / publishing_suggest.html
1 {% load i18n %}
2 {% load honeypot %}
3 {% load ssi_csrf_token from ssify %}
4
5 <h1>{% trans "Didn't find a book? Make a suggestion." %}</h1>
6
7 <form id='suggest-publishing-form' action="{% url 'suggest_publishing' %}" method="post" accept-charset="utf-8" class="cuteform">
8   {% ssi_csrf_token %}
9   {% render_honeypot_field %}
10   <ol>
11     <li>
12       <span class="error">{{ form.contact.errors }}</span>
13       <label for="id_contact">{{ form.contact.label }}</label>
14       {{ form.contact }}
15     </li>
16
17     <li>{% trans "I'd like to find in WolneLektury.pl theseā€¦" %}</li>
18
19     <li><label for="id_books">{{ form.books.label }}:</label> {{ form.books }}</li>
20
21     <li class="checkbox">
22       <span class="error">{{ form.ebook.errors }}</span>
23       <label for="id_ebook">{{ form.ebook.label }}:</label>
24       {{ form.ebook }}
25     </li>
26     <li class="checkbox">
27       <span class="error">{{ form.audiobook.errors }}</span>
28       <label for="id_audiobook">{{ form.audiobook.label }}:</label>
29       {{ form.audiobook }}
30     </li>
31
32     <li><input type="submit" value="{% trans "Send report" %}"/></li>
33     <li>{% trans "Remember that we can only publish books in public domain, ie. 70 years after the death of the author!" %}</li>
34   </ol>
35 </form>