diff options
author | Dusty Phillips <buchuki@gmail.com> | 2009-05-04 20:28:50 -0400 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2009-05-04 20:28:50 -0400 |
commit | 05fcad9c2a55e87349f5dd09e722aefc821094be (patch) | |
tree | ae15ca9b1a62a2795422432e4165209dfca010bd /templates | |
parent | a025708ef9f4f32daab29ca96b3fbec49a7b05dd (diff) |
Fix link to packages in todo lists.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/todolists/.view.html.swo | bin | 0 -> 12288 bytes | |||
-rw-r--r-- | templates/todolists/view.html | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/templates/todolists/.view.html.swo b/templates/todolists/.view.html.swo Binary files differnew file mode 100644 index 00000000..805479dc --- /dev/null +++ b/templates/todolists/.view.html.swo diff --git a/templates/todolists/view.html b/templates/todolists/view.html index c81c568c..43dc28e3 100644 --- a/templates/todolists/view.html +++ b/templates/todolists/view.html @@ -23,7 +23,7 @@ <tbody> {% for pkg in list.packages %} <tr class="{% cycle even,odd %}"> - <td><a href="/packages/{{ pkg.pkg.id }}/">{{ pkg.pkg.pkgname }}</a></td> + <td><a href="{{ pkg.pkg.get_absolute_url }}">{{ pkg.pkg.pkgname }}</a></td> <td>{{ pkg.pkg.arch.name }}</td> <td>{{ pkg.pkg.repo.name|capfirst }}</td> <td>{{ pkg.pkg.maintainer.get_full_name|default:"Orphan" }}</td> |