Update to Django 1.11 and Celery 4.2.
[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     <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 %}