evorepo/templates/packages/files-list.html
Dan McGee 5fb2fca70a Fix filelists AJAX replacement
We were double nesting the filelist div. Have the AJAX call only return the
contents and not the enclosing div.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-04-02 17:53:33 -05:00

11 lines
231 B
HTML

<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 %}