summaryrefslogtreecommitdiffstats
path: root/templates/packages/files-list.html
blob: c45e0f10eba3ab45a650493d0474da3d2e9e191f (plain)
1
2
3
4
5
6
7
8
9
{% if files.count %}
<ul>
    {% for file in files %}
    <li>{{ file.path }}</li>
    {% endfor %}
</ul>
{% else %}
<p>No file list available.</p>
{% endif %}