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