diff options
author | eliott <eliott@cactuswax.net> | 2007-12-30 12:13:47 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-30 12:13:47 -0800 |
commit | 77f51431d300f99f4d23ed9a72de2c693d2aef2a (patch) | |
tree | f1f4f5fca3ec7962dfe9afd02104c6d8c15cecf3 /templates/devel/index.html | |
parent | ef8c17e0fd7ad1bc9a86f82cc8c290b6f049a20a (diff) |
Feature for FS#8988
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r-- | templates/devel/index.html | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 2617de9f..0c468cee 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -21,9 +21,28 @@ </div> <br /><br /> {% endif %} + + <div class="greybox"> + <h3 class="title">Repository Package Stats</h3> + <table class="results" width="100%"> + <tr> + <th>Repository</th> + <th># Package</th> + <th># Flagged</th> + </tr> + {% for repo in repos %} + <tr> + <td><a href="/packages/?repo={{ repo.name }}">{{ repo.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">Flagged Package Stats</h3> + <h3 class="title">Maintainer Package Stats</h3> <table class="results" width="100%"> <tr> <th>Maintainer</th> |