summaryrefslogtreecommitdiffstats
path: root/templates/packages/files.html
blob: 6524fe93cf553ac3f3ca0531fcf6690df2cf2e14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.full_version }} ({{ pkg.arch.name }}) - File List{% endblock %}
{% block navbarclass %}anb-packages{% endblock %}

{% block content %}
<div id="pkgdetails" class="box">

    <h2>Package File List: {{ pkg.pkgname }} {{ pkg.full_version }}</h2>
    <div id="metadata">
        <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p>
        <p>Package has {{ files_count }} file{{ files_count|pluralize }} and {{ dir_count }} director{{ dir_count|pluralize:"y,ies" }}.</p>
        {% include "packages/files_list.html" %}
    </div>

</div>
{% endblock %}