evorepo/templates/packages/files.html
Dan McGee ae00d10ff4 Rename files list template for consistency
We use underscores in all other templates.

Also remove some of the generated whitespace in the template which is
noticeable in very large package lists.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-12-03 13:29:06 -06:00

17 lines
643 B
HTML

{% 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 %}