some usability changes
[redakcja.git] / apps / catalogue / templates / catalogue / chunk_add.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5     <h1>{% trans "Add chunk" %}</h1>
6
7         <form enctype="multipart/form-data" method="POST" action="">
8     {% csrf_token %}
9         {{ form.as_p }}
10
11         <p><button type="submit">{% trans "Add chunk" %}</button></p>
12         </form>
13 {% endblock content %}