summaryrefslogtreecommitdiffstats
path: root/templates/packages/files.html
blob: 24f5581933d60db0398d855ba81288f57b963734 (plain)
1
2
3
4
5
6
7
8
9
10
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 %}