Reduce the ugly, just bootstrap things.
[audio.git] / src / archive / templates / archive / file_unmanaged.html
1 {% extends "archive/base.html" %}
2 {% load i18n %}
3 {% load tags %}
4
5 {% block messages %}
6     {% if err_exists %}
7         <p>{% trans "File with same name already exists!" %}</p>
8     {% endif %}
9 {% endblock %}
10
11
12 {% block content %}
13
14 <div class="card mt-4">
15   <div class="card-header">
16     <h1>{{ filename }}</h1>
17   </div>
18   <div class="card-body">
19     {% multiple_tags_table tags %}
20
21     <form method="post" action="{% url 'move_to_new' filename %}">
22       {% csrf_token %}
23       <input class="btn btn-primary" type="submit" value="{% trans "Move to new files" %}" />
24     </form>
25   </div>
26 </div>
27
28
29 {% endblock %}