summaryrefslogtreecommitdiffstats
path: root/module/web/templates/default/downloads.html
diff options
context:
space:
mode:
authorGravatar mariusbaumann <baumann.marius@gmail.com> 2015-01-03 07:12:50 +0100
committerGravatar mariusbaumann <baumann.marius@gmail.com> 2015-01-03 07:12:50 +0100
commit69200db3473588f6df334836c6f249f489575888 (patch)
treeb3b1abc032c4826cb4c463285641dde416291d6c /module/web/templates/default/downloads.html
parentRedesign with bootstrap css (diff)
downloadpyload-69200db3473588f6df334836c6f249f489575888.tar.xz
Completely new Design v1
Some bugs heve to be fexed next days
Diffstat (limited to 'module/web/templates/default/downloads.html')
-rw-r--r--module/web/templates/default/downloads.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/module/web/templates/default/downloads.html b/module/web/templates/default/downloads.html
index 450b8a102..d19fe969a 100644
--- a/module/web/templates/default/downloads.html
+++ b/module/web/templates/default/downloads.html
@@ -8,20 +8,20 @@
{% block content %}
-<ul>
+<ul style="list-style-type: none;">
{% for folder in files.folder %}
- <li>
- {{ folder.name }}
+ <li style="list-style-type: none;">
+ <span style="margin-right: 5px" class="glyphicon glyphicon-folder-close"></span>{{ folder.name }}
<ul>
{% for file in folder.files %}
- <li><a href='get/{{ folder.path|escape }}/{{ file|escape }}'>{{file}}</a></li>
+ <li style="list-style-type: none;"><span style="margin-right: 5px" class="glyphicon glyphicon-file"></span><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>
+ <li style="list-style-type: none;"> <span style="margin-right: 5px" class="glyphicon glyphicon-file"></span><a href='get/{{ file|escape }}'>{{ file }}</a></li>
{% endfor %}
</ul>