summaryrefslogtreecommitdiffstats
path: root/templates/packages/files.html
blob: 145bcf241540d0c9bf9d3ae4603cf57402335bf3 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% block title %}Pkg: {{ pkg.pkgname }} - Arch Linux Package File List{% endblock %}
{% 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 %}