summaryrefslogtreecommitdiffstats
path: root/templates/devel
diff options
context:
space:
mode:
authorDusty Phillips <dusty@archlinux.ca>2010-07-22 21:59:34 +0200
committerDan McGee <dan@archlinux.org>2010-07-25 22:49:06 +0200
commit8ce58ee97a5ac64e6b2549258d7a0ca5f334f6e3 (patch)
tree9f662b567c3f29ed8b05f0586c591cfcab802fb4 /templates/devel
parent63696563a3955d968103bddf6b854798a661da5c (diff)
downloadarchweb-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/devel')
-rw-r--r--templates/devel/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html
index cba9e76..7ed66bb 100644
--- a/templates/devel/index.html
+++ b/templates/devel/index.html
@@ -24,7 +24,7 @@
<tbody>
{% for todo in todos %}
<tr class="{% cycle 'odd' 'even' %}">
- <td class="key"><a href="{{ todo.get_absolute_url }}/"
+ <td class="key"><a href="{{ todo.get_absolute_url }}"
title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td>
<td>{{ todo.date_added }}</td>
<td>{{ todo.description }}</td>