summaryrefslogtreecommitdiffstats
path: root/templates/packages/files-list.html
blob: d26a11e9a0e7b9db287f44dd8c11eacd8616428f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="listing" id="filelist">
	<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 %}
</div>