diff options
author | eliott <eliott@cactuswax.net> | 2008-03-08 17:45:04 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-08 17:45:04 -0800 |
commit | 18156a182c935249772f7939695a68b32e403ac0 (patch) | |
tree | abe86724d68e1bff121d6fbd9fb562332eaa26bc /templates/devel | |
parent | 9ec54327375525fe7908a433fae170a81ce5cc4f (diff) |
Fix for package counts by arch
Diffstat (limited to 'templates/devel')
-rw-r--r-- | templates/devel/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index 091fcb99..3a09b522 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -33,8 +33,8 @@ {% 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> + <td><strong>{{ arch.count }}</strong> packages</td> + <td><strong>{{ arch.flagged }}</strong> packages</td> </tr> {% endfor %} </table> |