131250a3ac74e2d3cc485c6d457d670a0aa7c85f
[wolnelektury.git] / src / wolnelektury / templates / admin / catalogue / book / change_list.html
1 {% extends "admin/change_list.html" %}
2 {% load i18n %}
3
4 {% block content %}
5   <form action="{% url 'import_book' %}" method="post" enctype="multipart/form-data">
6     {% csrf_token %}
7     <p>
8       <input type="file" id="id_book_xml_file" name="book_xml_file"/>
9       <input type="submit" value="{% trans "Import book" %}"/>
10     </p>
11   </form>
12   {{ block.super }}
13 {% endblock content %}