diff options
author | eliott <eliott@cactuswax.net> | 2008-04-09 19:28:24 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-09 19:28:24 -0700 |
commit | 3eea31d8f2d5a4213b00eedaabfc75770aeb418f (patch) | |
tree | b485407102154fd13e2dfdc5e9a9d4da2cbc6026 /templates/devel/index.html | |
parent | 0930d0cc7403df2bee625f8458d618aab9c767c1 (diff) |
Changed to arches and repos in the db.
Added them to the django admin interface as well.
Diffstat (limited to 'templates/devel/index.html')
-rw-r--r-- | templates/devel/index.html | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index d993e3b8..91055376 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -29,14 +29,12 @@ <th width="50%">Arch</th> <th># Packages</th> <th># Flagged</th> - <th># Flagnotest</th> </tr> {% for arch in arches %} <tr class="{% cycle pkgr2,pkgr1 %}"> <td><strong>{{ arch.name }}</strong></td> <td><a href="/packages/?arch={{ arch.name }}"><strong>{{ arch.count }}</strong> packages</a></td> <td><a href="/packages/?arch={{ arch.name }}&flagged_only=y"><strong>{{ arch.flagged }}</strong> packages</a></td> - <td><a href="/packages/?arch={{ arch.name }}&flagged_only=y"><strong>{{ arch.flagnotest }}</strong> packages</a></td> </tr> {% endfor %} </table> @@ -68,14 +66,12 @@ <th width="50%">Maintainer</th> <th># Packages</th> <th># Flagged</th> - <th># Flagnotest</th> </tr> {% for maint in stats %} <tr class="{% cycle pkgr2,pkgr1 %}"> <td><strong>{{ maint.0.get_full_name }}</strong></td> <td><a href="/packages/?maint={{ maint.0.id }}"><strong>{{ maint.1 }}</strong> packages</a></td> <td><a href="/packages/?maint={{ maint.0.id }}&flagged_only=y"><strong>{{ maint.2 }}</strong> packages</a></td> - <td><a href="/packages/?maint={{ maint.0.id }}&flagged_only=y"><strong>{{ maint.3 }}</strong> packages</a></td> </tr> {% endfor %} </table> |