From 371a676ae83b64294c37a25073f58ac51af92be8 Mon Sep 17 00:00:00 2001 From: Alan Huang Date: Thu, 27 May 2010 22:05:49 -0400 Subject: [PATCH] Fix the front page counts. --- anygit/templates/index/index.mako | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/anygit/templates/index/index.mako b/anygit/templates/index/index.mako index 83f0410..664cb92 100644 --- a/anygit/templates/index/index.mako +++ b/anygit/templates/index/index.mako @@ -17,9 +17,11 @@

Currently indexed:

-
${aggregate.indexed_repository_count} repos +
${aggregate.indexed_repository_count} + ${h.pluralize(aggregate.indexed_repository_count, 'repo', when='never')}
-
${aggregate.blob_count} blobs +
${aggregate.blob_count} + ${h.pluralize(aggregate.blob_count, 'blob', when='never')}
${aggregate.tree_count} ${h.pluralize(aggregate.tree_count, 'tree', when='never')}