Librarian in regular requirements.
[redakcja.git] / apps / catalogue / templates / catalogue / upload_pdf.html
1 {% extends "catalogue/base.html" %}
2 {% load i18n %}
3
4
5 {% block titleextra %}{% trans "PDF file upload" %}{% endblock %}
6
7
8 {% block content %}
9
10
11 <h2>{% trans "PDF file upload" %}</h2>
12
13 <form enctype="multipart/form-data" method="POST" action="">
14 {% csrf_token %}
15 {{ form.as_p }}
16 <p><button type="submit">{% trans "Upload" %}</button></p>
17 </form>
18
19
20 {% endblock content %}