1 {% extends "catalogue/base.html" %}
6 {% block titleextra %}{% trans "Chunk settings" %}{% endblock %}
11 <div class="card-header">
12 <h1>{% trans "Chunk settings" %}</h1>
14 <div class="card-body">
16 <form enctype="multipart/form-data" method="POST" action="{% if go_next %}?next={{ go_next }}{% endif %}">
18 <div class='editable'>
19 <p>{% trans "Book" %}: {{ chunk.book }} ({{ chunk.number }}/{{ chunk.book|length }})</p>
20 {% bootstrap_form form %}
22 <button class="btn btn-primary" type="submit">{% trans "Save" %}</button>
29 <p style="text-align: right"><a class="btn btn-danger" href="{% url "catalogue_chunk_add" chunk.book.slug chunk.slug %}">{% trans "Split chunk" %}</a></p>
33 {% endblock content %}