summaryrefslogtreecommitdiffstats
path: root/templates/packages/files.html
blob: dc0c64b71eea87d1bc94189f803ec35046a5f7fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block title %}Arch Linux - Package File List - {{ pkg.pkgname }}{% endblock %}
{% block content %}
    <div class="box">
        <h2 class="title">{{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }}</h2>
        <div class="listing">
            <h4>Files:</h4>
            <ul style="font-size:small;list-style:none">
            {% for file in files %}
                <li>{{ file.path }}</li>
            {% endfor %}
            </ul>
        </div>
    </div>
{% endblock %}