Merge master into img-playground. Image support with new management features. Missing...
[redakcja.git] / apps / catalogue / templates / catalogue / document_create_missing.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5     <h1>{% trans "Create a new book" %}</h1>
6
7     <form enctype="multipart/form-data" method="POST">
8     {% csrf_token %}
9     <table class='editable'>
10         {{ form.as_table}}
11         <tr><td></td><td><button type="submit">{% trans "Create book" %}</button></td></tr>
12     </table>
13     </form>
14 {% endblock content %}