diff options
author | eliott <eliott@cactuswax.net> | 2008-03-08 12:11:02 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-08 12:11:02 -0800 |
commit | 3e31808521e990b3b86d25de7d49cdd90a2de29f (patch) | |
tree | 610986402708677b9cccf3c8d2632177173789ed /templates/devel/index.html | |
parent | 4d1977f24e062370efd307cbe51d4cd826828362 (diff) |
More changes to the multiarch model.
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r-- | templates/devel/index.html | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index afbec25a..091fcb99 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -23,11 +23,29 @@ {% endif %} <div class="greybox"> - <h3 class="title">Repository Package Stats</h3> + <h3 class="title">Stats by Architecture</h3> + <table class="results" width="100%"> + <tr> + <th width="50%">Arch</th> + <th># Packages</th> + <th># Flagged</th> + </tr> + {% for arch in archs %} + <tr class="{% cycle pkgr2,pkgr1 %}"> + <td><a href="/packages/?arch={{ arch.name }}">{{ arch.name }}</a></td> + <td><strong>{{ repo.count }}</strong> packages</td> + <td><strong>{{ repo.flagged }}</strong> packages</td> + </tr> + {% endfor %} + </table> + </div> + <br /><br /> + <div class="greybox"> + <h3 class="title">Stats by Repository</h3> <table class="results" width="100%"> <tr> <th width="50%">Repository</th> - <th># Package</th> + <th># Packages</th> <th># Flagged</th> </tr> {% for repo in repos %} @@ -42,11 +60,11 @@ <br /><br /> <div class="greybox"> - <h3 class="title">Maintainer Package Stats</h3> + <h3 class="title">Stats by Maintainer</h3> <table class="results" width="100%"> <tr> <th width="50%">Maintainer</th> - <th># Package</th> + <th># Packages</th> <th># Flagged</th> </tr> {% for maint in stats %} |