diff options
author | Dan McGee <dan@archlinux.org> | 2012-04-26 14:43:18 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2012-04-26 14:43:18 -0500 |
commit | eba4e32891f12bca2b922ee6d859513f67789f42 (patch) | |
tree | f5dbfbede1e72f2efc0926fa03305472b286f2cc /templates/packages/files.html | |
parent | 5f22f4266cd978b4fd80cafb2201e39acaeef3fc (diff) |
Package files display tweaks
Slightly gray out the directories when displaying file lists, drawing
more attention to the file names instead.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r-- | templates/packages/files.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html index 6524fe93..ba3fba25 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -5,12 +5,12 @@ {% 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> + <h2>{{ pkg.pkgname }} {{ pkg.full_version }} File List</h2> + <div id="metadata"><div id="pkgfiles"> <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> {% include "packages/files_list.html" %} - </div> + </div></div> </div> {% endblock %} |