Start to reorganize views a little.
[audio.git] / src / archive / templates / archive / list_new.html
1 {% extends "archive/list.html" %}
2 {% load i18n %}
3
4
5 {% block menu-active-new %}active{% endblock %}
6
7
8
9 {% block file-list-title %}
10     {% trans "New audiobooks" %}
11 {% endblock %}
12
13
14 {% block file-list-info %}
15     {% trans "Put source audiobooks in:" %}
16     <tt>{{ path }}</tt>
17 {% endblock %}
18
19
20 {% block file-list %}
21   {% for file in objects %}
22     <tr>
23       <td>
24         <a href='{% url "file_new" file %}'>{{ file }}</a>
25       </td>
26     </tr>
27   {% endfor %}
28 {% endblock %}