diff options
author | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
---|---|---|
committer | Walter Purcaro <vuolter@gmail.com> | 2015-02-16 10:39:43 +0100 |
commit | 46eaa480d1f80b7aa701d756de953050f7885f0c (patch) | |
tree | 3625e7f96a4712b65c8bb008a86087ddf4a99888 /pyload/webui/themes/Default/tml/downloads.html | |
parent | Improve theme structure a bit (diff) | |
download | pyload-46eaa480d1f80b7aa701d756de953050f7885f0c.tar.xz |
Fix filename case
Diffstat (limited to 'pyload/webui/themes/Default/tml/downloads.html')
-rw-r--r-- | pyload/webui/themes/Default/tml/downloads.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/pyload/webui/themes/Default/tml/downloads.html b/pyload/webui/themes/Default/tml/downloads.html new file mode 100644 index 000000000..fe0f4f1bc --- /dev/null +++ b/pyload/webui/themes/Default/tml/downloads.html @@ -0,0 +1,29 @@ +{% extends '/Default/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 %} |