Reduce the ugly, just bootstrap things.
[audio.git] / src / archive / templates / archive / list_unmanaged.html
1 {% extends "archive/list.html" %}
2 {% load i18n %}
3
4 {% block file-list-title %}
5     {% trans "Unmanaged archive" %}
6 {% endblock %}
7
8
9 {% block file-list-info %}
10 {% endblock %}
11
12
13 {% block file-list %}
14     {% for file in objects %}
15     <tr>
16             <td>
17             <a href='{% url "file_unmanaged" file %}'>{{ file }}</a>
18             </td>
19     </tr>
20     {% endfor %}
21 {% endblock %}