Skip to content

Commit

Permalink
Fix the front page counts.
Browse files Browse the repository at this point in the history
  • Loading branch information
cesium12 authored and Greg Brockman committed May 30, 2010
1 parent 8f3d404 commit 371a676
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions anygit/templates/index/index.mako
Expand Up @@ -17,9 +17,11 @@

<div class="box" id="current">
<div class="info"><h2>Currently indexed:</h2></div>
<div id="repo"><b>${aggregate.indexed_repository_count}</b> repos
<div id="repo"><b>${aggregate.indexed_repository_count} </b>
${h.pluralize(aggregate.indexed_repository_count, 'repo', when='never')}
<img src="${url('/static/git-repo.png')}" onclick="setfocus('url');"></div>
<div id="blob"><b>${aggregate.blob_count}</b> blobs
<div id="blob"><b>${aggregate.blob_count} </b>
${h.pluralize(aggregate.blob_count, 'blob', when='never')}
<img src="${url('/static/git-blob.png')}" onclick="setfocus('query');"></div>
<div id="tree"><b>${aggregate.tree_count} </b>
${h.pluralize(aggregate.tree_count, 'tree', when='never')}
Expand Down

0 comments on commit 371a676

Please sign in to comment.