Fix Flickr license detection.
[redakcja.git] / apps / catalogue / templates / catalogue / chunk_edit.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5     <h1>{% trans "Chunk settings" %}</h1>
6
7         <form enctype="multipart/form-data" method="POST" action="{% if go_next %}?next={{ go_next }}{% endif %}">
8     {% csrf_token %}
9     <table class='editable'>
10         <tr><th>{% trans "Book" %}:</th><td>{{ chunk.book }} ({{ chunk.number }}/{{ chunk.book|length }})</td></tr>
11         {{ form.as_table}}
12         <tr><td></td><td><button type="submit">{% trans "Save" %}</button></td></tr>
13     </table>
14
15         </form>
16
17
18     <p><a href="{% url "catalogue_chunk_add" chunk.book.slug chunk.slug %}">{% trans "Split chunk" %}</a></p>
19
20 {% endblock content %}