Code layout change.
[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>XML: <input type="file" id="id_picture_xml_file" name="picture_xml_file" /><br/>
8             {% trans "Image" %}: <input type="file" id="id_picture_image_file" name="picture_image_file" /><br/>
9             <input type="submit" value="{% trans "Import picture" %}"/></p>
10     </form>
11     {{ block.super }}
12 {% endblock content %}