fnp
/
audio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
04396f64a85c63c4adef734f629e699fc3d505a7
[audio.git]
/
src
/
archive
/
templates
/
archive
/
list_published.html
1
{% extends "archive/list.html" %}
2
{% load i18n %}
3
4
5
{% block file-list-title %}
6
{% trans "Published audiobooks" %}
7
{% endblock %}
8
9
10
{% block file-list-info %}
11
{% endblock %}
12
13
14
{% block file-list %}
15
{% for file in objects %}
16
<tr>
17
<td>
18
<a href='{% url "file" file.id %}'>{{ file }}</a>
19
</td>
20
</tr>
21
{% endfor %}
22
{% endblock %}