diff options
author | Dusty Phillips <dusty@archlinux.ca> | 2010-07-22 21:59:34 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-07-25 22:49:06 +0200 |
commit | 8ce58ee97a5ac64e6b2549258d7a0ca5f334f6e3 (patch) | |
tree | 9f662b567c3f29ed8b05f0586c591cfcab802fb4 /templates/todolists | |
parent | 63696563a3955d968103bddf6b854798a661da5c (diff) | |
download | archweb-8ce58ee97a5ac64e6b2549258d7a0ca5f334f6e3.tar.gz archweb-8ce58ee97a5ac64e6b2549258d7a0ca5f334f6e3.tar.xz |
Remove an extra trailing slash that is causing a broken url on todolists.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists')
-rw-r--r-- | templates/todolists/list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/todolists/list.html b/templates/todolists/list.html index 95eb3ee..60e347d 100644 --- a/templates/todolists/list.html +++ b/templates/todolists/list.html @@ -25,7 +25,7 @@ <tbody> {% for list in lists %} <tr class="{% cycle 'odd' 'even' %}"> - <td><a href="{{ list.get_absolute_url }}/" + <td><a href="{{ list.get_absolute_url }}" title="View todo list: {{ list.name }}">{{ list.name }}</a></td> <td>{{ list.date_added }}</td> <td>{{ list.creator.get_full_name }}</td> |