summaryrefslogtreecommitdiffstats
path: root/templates/packages/files.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r--templates/packages/files.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html
new file mode 100644
index 0000000..24f5581
--- /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 %}
+