diff options
author | eliott <eliott@cactuswax.net> | 2008-04-09 19:32:44 -0700 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2008-04-09 19:32:44 -0700 |
commit | 26aea7ab45ecb25dc61f6b046456f239d4277e17 (patch) | |
tree | 7d982e420f2a6ce89e7445f90d0117d9d8b17d6e /templates/todolists | |
parent | 3eea31d8f2d5a4213b00eedaabfc75770aeb418f (diff) |
Cleanup from the previous change to the model for Arches and Repos.
Diffstat (limited to 'templates/todolists')
-rw-r--r-- | templates/todolists/view.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index c8a3e9bb..1ebf810c 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -48,8 +48,8 @@ {% for pkg in pkgs %} <tr class="{% cycle even,odd %}"> <td><a href="/packages/{{ pkg.pkg.id }}/">{{ pkg.pkg.id }}</a></td> - <td>{{ pkg.pkg.get_arch_display }}</td> - <td>{{ pkg.pkg.get_repo_display }}</td> + <td>{{ pkg.pkg.arch.name }}</td> + <td>{{ pkg.pkg.repo.name|capfirst }}</td> <td>{{ pkg.pkg.pkgname }}</td> <td>{{ pkg.pkg.maintainer.get_full_name|default:"Orphan" }}</td> <td> |