summaryrefslogtreecommitdiffstats
path: root/templates/packages/files-list.html
blob: 1c9ea635fd99317a655792638013fb0ece4d0a01 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% if pkg.last_update > pkg.files_last_update %}
<p class="message">Note: This file list was generated from a previous version
of the package; it may be out of date.</p>
{% endif %}
{% if files.count %}
<ul>
    {% for file in files %}
    <li>{{ file.path }}</li>
    {% endfor %}
</ul>
{% else %}
<p class="message">No file list available.</p>
{% endif %}