Remove an extra trailing slash that is causing a broken url on todolists.

Signed-off-by: Dan McGee <dan@archlinux.org>
This commit is contained in:
Dusty Phillips 2010-07-22 13:59:34 -06:00 committed by Dan McGee
parent 63696563a3
commit 8ce58ee97a
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ <h3>Package Todo Lists</h3>
<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>

View File

@ -25,7 +25,7 @@ <h2>Package Todo Lists</h2>
<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>