evorepo/templates/packages/files-list.html
Dan McGee 7e1e5a5e8a files: template reuse
Get rid of the copy/paste by including the sub-template.

Signed-off-by: Dan McGee <dan@archlinux.org>
2010-02-27 13:36:58 -06:00

9 lines
179 B
HTML

<div class="listing" id="filelist">
<h4>Files:</h4>
<ul style="font-size:small;list-style:none">
{% for file in files %}
<li>{{ file.path }}</li>
{% endfor %}
</ul>
</div>