summaryrefslogtreecommitdiffstats
path: root/pyload/webui/themes/clearbright/tml/downloads.html
diff options
context:
space:
mode:
authorGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-15 15:01:56 +0100
committerGravatar Walter Purcaro <vuolter@gmail.com> 2014-11-15 15:01:56 +0100
commitc4d2777542413eaf3a3a7bc74df15a274b2128c2 (patch)
tree712958924b0b3fc8c0f6b16161e1d24e2bfb6e07 /pyload/webui/themes/clearbright/tml/downloads.html
parentUse default theme for now (diff)
downloadpyload-c4d2777542413eaf3a3a7bc74df15a274b2128c2.tar.xz
Rename theme "estate" to "clearbright"
Diffstat (limited to 'pyload/webui/themes/clearbright/tml/downloads.html')
-rw-r--r--pyload/webui/themes/clearbright/tml/downloads.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/pyload/webui/themes/clearbright/tml/downloads.html b/pyload/webui/themes/clearbright/tml/downloads.html
new file mode 100644
index 000000000..bb1ed89bd
--- /dev/null
+++ b/pyload/webui/themes/clearbright/tml/downloads.html
@@ -0,0 +1,29 @@
+{% extends '/clearbright/tml/base.html' %}
+
+{% block title %}Downloads - {{super()}} {% endblock %}
+
+{% block subtitle %}
+{{_("Downloads")}}
+{% endblock %}
+
+{% block content %}
+
+<ul>
+ {% for folder in files.folder %}
+ <li>
+ {{ folder.name }}
+ <ul>
+ {% for file in folder.files %}
+ <li><a href='get/{{ folder.path|escape }}/{{ file|escape }}'>{{file}}</a></li>
+ {% endfor %}
+ </ul>
+ </li>
+ {% endfor %}
+
+ {% for file in files.files %}
+ <li> <a href='get/{{ file|escape }}'>{{ file }}</a></li>
+ {% endfor %}
+
+</ul>
+
+{% endblock %} \ No newline at end of file