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