diff options
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r-- | templates/packages/files.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html new file mode 100644 index 00000000..24f55819 --- /dev/null +++ b/templates/packages/files.html @@ -0,0 +1,11 @@ +{% 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 %} + |