summaryrefslogtreecommitdiffstats
path: root/templates/packages/files-list.html
blob: dee18ecdf6eaa3062dfc43cebceea95fae8cc314 (plain)
1
2
3
4
5
6
7
8
9
10
<h4>Files:</h4>
{% if files.count %}
<ul style="font-size:small;list-style:none">
{% for file in files %}
<li>{{ file.path }}</li>
{% endfor %}
</ul>
{% else %}
<p style="padding: 10px 20px;">No filelist available.</p>
{% endif %}