diff options
author | Dusty Phillips <buchuki@gmail.com> | 2009-05-05 02:28:50 +0200 |
---|---|---|
committer | Dusty Phillips <buchuki@gmail.com> | 2009-05-05 02:28:50 +0200 |
commit | 05fcad9c2a55e87349f5dd09e722aefc821094be (patch) | |
tree | ae15ca9b1a62a2795422432e4165209dfca010bd /templates/todolists/view.html | |
parent | a025708ef9f4f32daab29ca96b3fbec49a7b05dd (diff) | |
download | archweb-05fcad9c2a55e87349f5dd09e722aefc821094be.tar.gz archweb-05fcad9c2a55e87349f5dd09e722aefc821094be.tar.xz |
Fix link to packages in todo lists.
Diffstat (limited to 'templates/todolists/view.html')
-rw-r--r-- | templates/todolists/view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/todolists/view.html b/templates/todolists/view.html index c81c568..43dc28e 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> |