564b26db436ca3279c348ef2266c47074fe6439a
[wolnelektury.git] / src / picture / templates / admin / picture / picture / change_list.html
1 {% extends "admin/change_list.html" %}
2 {% load i18n %}
3
4 {% block content %}
5   <form action="{% url 'import_picture' %}" method="post" enctype="multipart/form-data">
6   {% csrf_token %}
7     <p>
8       XML: <input type="file" id="id_picture_xml_file" name="picture_xml_file" /><br/>
9       {% trans "Image" %}: <input type="file" id="id_picture_image_file" name="picture_image_file" /><br/>
10       <input type="submit" value="{% trans "Import picture" %}"/>
11     </p>
12   </form>
13   {{ block.super }}
14 {% endblock content %}