fnp
/
audio.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
fd48c336c8ef0f13855e894a407cf2f77bda39ba
[audio.git]
/
apps
/
archive
/
templates
/
archive
/
list_unmanaged.html
1
{% extends "archive/list.html" %}
2
{% load i18n %}
3
4
{% block file-list-title %}
5
{% trans "Unmanaged archive" %}
6
{% endblock %}
7
8
9
{% block file-list-info %}
10
{% endblock %}
11
12
13
{% block file-list %}
14
{% for file in objects %}
15
<li>
16
<a href='{% url "file_unmanaged" file|urlencode %}'>{{ file }}</a>
17
</li>
18
{% endfor %}
19
{% endblock %}