diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-02-28 21:05:13 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2012-02-28 21:05:13 -0500 |
commit | 9e90f1968802d350157bcbeef0cebd7d96eb1ada (patch) | |
tree | 1153f677b807c9d7f40ef2ce4f9ab692ac6979a0 /templates/packages/files.html | |
parent | 60f9b3fe60d5e5b6049ef71d1dfb25dade4fd6a3 (diff) | |
parent | 20e9a83e05e352ec6e6f8fbe70457951cf9cd047 (diff) |
Merge commit '20e9a83' from Archweb
Conflicts:
main/fixtures/groups.json
packages/templatetags/package_extras.py
Diffstat (limited to 'templates/packages/files.html')
-rw-r--r-- | templates/packages/files.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/packages/files.html b/templates/packages/files.html index 78a40def..8cf6738d 100644 --- a/templates/packages/files.html +++ b/templates/packages/files.html @@ -8,9 +8,9 @@ <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> - {% include "packages/files-list.html" %} + <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 %} - |