ukrainian
[wolnelektury.git] / apps / suggest / templates / publishing_suggest.html
1 {% load i18n %}
2 <h1>{% trans "Didn't find a book? Make a suggestion." %}</h1>
3
4 <form id='suggest-publishing-form' action="{% url suggest_publishing %}" method="post" accept-charset="utf-8" class="cuteform">
5 {% csrf_token %}
6 <ol>
7     <li><span class="error">{{ form.contact.errors }}</span><label for="id_contact">{{ form.contact.label }}</label> {{ form.contact }}</li>
8
9     <li>{% trans "I'd like to find in WolneLektury.pl theseā€¦" %}</li>
10
11     <li><span class="error">{{ form.books.errors }}</span><label for="id_books">{{ form.books.label }}:</label> {{ form.books }}</li>
12
13     <li><span class="error">{{ form.audiobooks.errors }}</span><label for="id_audiobooks">{{ form.audiobooks.label }}:</label> {{ form.audiobooks }}</li>
14
15     <li><input type="submit" value="{% trans "Send report" %}"/></li>
16 </ol>
17 </form>