acc161db9a2ba2edce0952768098a26662d457c2
[audio.git] / src / archive / templates / archive / file_new.html
1 {% extends "archive/base.html" %}
2 {% load i18n tags %}
3
4 {% block content %}
5
6 <form method="post" action="{% url 'move_to_archive' filename %}">
7     {% csrf_token %}
8     <input type="submit" value="{% trans "Move to archive" %}" />
9 </form>
10
11
12 {% multiple_tags_table tags %}
13
14
15 <form method='post' action='.'>
16     {% csrf_token %}
17     <table>
18         {{ form.as_table }}
19         <td></td><td><input type="submit" value='{% trans "Commit" %}' /></td></td>
20     </table>
21 </form>
22
23 {% endblock %}