blob: f66f9f7a1288786fbc53c3f7c77563c0153514f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{% extends "admin/base_site.html" %}
{% block content %}
<form action="." method="post">
{% csrf_token %}
<table>
{{ file_form }}
</table>
<input type="hidden" name="action" value="{{current_action}}" />
<input type="submit" name="apply" value="Copy" />
</form>
{% endblock %}
|