Reorganize code.
[audio.git] / src / archive / templates / archive / list_unmanaged.html
diff --git a/src/archive/templates/archive/list_unmanaged.html b/src/archive/templates/archive/list_unmanaged.html
new file mode 100755 (executable)
index 0000000..fd48c33
--- /dev/null
@@ -0,0 +1,19 @@
+{% extends "archive/list.html" %}
+{% load i18n %}
+
+{% block file-list-title %}
+    {% trans "Unmanaged archive" %}
+{% endblock %}
+
+
+{% block file-list-info %}
+{% endblock %}
+
+
+{% block file-list %}
+    {% for file in objects %}
+        <li>
+            <a href='{% url "file_unmanaged" file|urlencode %}'>{{ file }}</a>
+        </li>
+    {% endfor %}
+{% endblock %}