summaryrefslogtreecommitdiffstats
path: root/templates/packages/files_list.html
blob: 156d858888636c33028ca96315848c7bc11cc1a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% 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 pkg.files_last_update %}
{% if files|length %}
<ul>
{% for file in files %}
<li>{{ file.directory }}{{ file.filename|default:'' }}</li>{% endfor %}
</ul>
{% else %}
<p class="message">Package has no files.</p>
{% endif %}
{% else %}
<p class="message">No file list available.</p>
{% endif %}