diff options
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r-- | templates/packages/files.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html index ebdfb9cf..667a77cb 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -1,17 +1,16 @@ {% extends "base.html" %} -{% block title %}Arch Linux - {{ pkg.pkgname }} {{ pkg.pkgver }}-{{ pkg.pkgrel }} - Package File List{% endblock %} +{% block title %}{{ BRANDING_DISTRONAME }} - {{ 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.pkgver }}-{{ pkg.pkgrel }}</h2> + <h2>{{ pkg.pkgname }} {{ pkg.full_version }} File List</h2> + <p>Package has {{ files_count }} file{{ files_count|pluralize }} and {{ dir_count }} director{{ dir_count|pluralize:"y,ies" }}.</p> <p><a href="{{ pkg.get_absolute_url }}">Back to Package</a></p> - - <div id="metadata"> - {% include "packages/files-list.html" %} - </div> + <div id="metadata"><div id="pkgfilelist"> + {% include "packages/files_list.html.jinja" %} + </div></div> </div> {% endblock %} - |