Merge master into img-playground. Image support with new management features. Missing...
[redakcja.git] / apps / catalogue / templates / catalogue / upload_pdf.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4
5 {% block content %}
6
7
8 <h2>{% trans "PDF file upload" %}</h2>
9
10 <form enctype="multipart/form-data" method="POST" action="">
11 {% csrf_token %}
12 {{ form.as_p }}
13 <p><button type="submit">{% trans "Upload" %}</button></p>
14 </form>
15
16
17 {% endblock content %}