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/todolists | |
parent | 4d1977f24e062370efd307cbe51d4cd826828362 (diff) |
More changes to the multiarch model.
Diffstat (limited to 'templates/todolists')
-rw-r--r-- | templates/todolists/view.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index 7cd58dc8..b77e6e76 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -6,6 +6,7 @@ <table class="results" width="100%"> <tr> <th>ID</th> + <th>Arch</th> <th>Repo</th> <th>Name</th> <th>Maintainer</th> @@ -14,6 +15,7 @@ {% for pkg in pkgs %} <tr class="{% cycle pkgr1,pkgr2 %}"> <td><a href="/packages/{{ pkg.pkg.id }}/">{{ pkg.pkg.id }}</a></td> + <td>{{ pkg.pkg.arch.name }}</td> <td>{{ pkg.pkg.repo.name }}</td> <td>{{ pkg.pkg.pkgname }}</td> <td>{{ pkg.pkg.maintainer.get_full_name }}</td> |