evorepo/templates/packages/files.html

12 lines
234 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<div class="box">
<h3>Viewing Files: {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h3>
{% for file in files %}
{{ file.path }}<br />
{% endfor %}
</div>
{% endblock %}