summaryrefslogtreecommitdiffstats
path: root/templates/packages/files-list.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/packages/files-list.html')
-rw-r--r--templates/packages/files-list.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/templates/packages/files-list.html b/templates/packages/files-list.html
index dee18ec..c45e0f1 100644
--- a/templates/packages/files-list.html
+++ b/templates/packages/files-list.html
@@ -1,10 +1,9 @@
-<h4>Files:</h4>
{% if files.count %}
-<ul style="font-size:small;list-style:none">
-{% for file in files %}
-<li>{{ file.path }}</li>
-{% endfor %}
+<ul>
+ {% for file in files %}
+ <li>{{ file.path }}</li>
+ {% endfor %}
</ul>
{% else %}
-<p style="padding: 10px 20px;">No filelist available.</p>
+<p>No file list available.</p>
{% endif %}