diff options
author | eliott <eliott@cactuswax.net> | 2008-03-09 02:45:04 +0100 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-03-09 02:45:04 +0100 |
commit | 18156a182c935249772f7939695a68b32e403ac0 (patch) | |
tree | abe86724d68e1bff121d6fbd9fb562332eaa26bc /templates/devel/index.html | |
parent | 9ec54327375525fe7908a433fae170a81ce5cc4f (diff) | |
download | archweb-18156a182c935249772f7939695a68b32e403ac0.tar.gz archweb-18156a182c935249772f7939695a68b32e403ac0.tar.xz |
Fix for package counts by arch
Diffstat (limited to 'templates/devel/index.html')
-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 091fcb9..3a09b52 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> |