summaryrefslogtreecommitdiffstats
path: root/module/web/themes/flat/tml/downloads.html
diff options
context:
space:
mode:
authorGravatar stickell <l.stickell@yahoo.it> 2014-08-24 16:00:27 +0200
committerGravatar stickell <l.stickell@yahoo.it> 2014-08-24 16:00:27 +0200
commitdf888fad2bd1697f6c61930c486242764184d638 (patch)
tree290e04ade53e7f01ae74b2c7f886f711e8062afa /module/web/themes/flat/tml/downloads.html
parent[MultiHoster] Fixed crash due to getConf deprecation (diff)
downloadpyload-df888fad2bd1697f6c61930c486242764184d638.tar.xz
Revert 8446e16346ece5a934550f69e81d0cad528f7fba. It broke the WebUI.
Diffstat (limited to 'module/web/themes/flat/tml/downloads.html')
-rw-r--r--module/web/themes/flat/tml/downloads.html29
1 files changed, 0 insertions, 29 deletions
diff --git a/module/web/themes/flat/tml/downloads.html b/module/web/themes/flat/tml/downloads.html
deleted file mode 100644
index be56b4915..000000000
--- a/module/web/themes/flat/tml/downloads.html
+++ /dev/null
@@ -1,29 +0,0 @@
-{% extends '/flat/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