Finished logging in/registration.
[wolnelektury.git] / templates / catalogue / book_sets.html
1 {% if book %}
2 <h2>Zestawy zawierające utwór {{ book.title }}</h2>
3 <form action="{% url catalogue.views.book_sets book.slug %}" method="POST" accept-charset="utf-8" class="cuteform">
4 <ol>
5     <li>{{ form.set_ids }}</li>
6     <li><input type="submit" value="Zapisz zestawy"/></li>
7 </ol>
8 </form>
9 {% endif %}
10 <hr />
11 <form action="{% url catalogue.views.new_set %}" method="POST" accept-charset="utf-8" class="cuteform">
12 <ol>
13     <li>{{ new_set_form.name }} <input type="submit" value="Dodaj zestaw"/></li>
14 </ol>
15 </form>