c837cfd6b90d5d4248d7e6d79b1a9721d6b88d24
[audio.git] / apps / 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     <span>{{ path }}</span>
13 {% endblock %}
14
15
16 {% block file-list %}
17     {% for file in objects %}
18         <li>
19             <a href='{% url file_new file %}'>{{ file }}</a>
20         </li>
21     {% endfor %}
22 {% endblock %}