diff options
author | Dan McGee <dan@archlinux.org> | 2011-03-22 21:24:08 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-22 21:24:08 -0500 |
commit | 9360a84d7697d9a49e6f91965dc180c0085c6b56 (patch) | |
tree | 8b77da274e6ab92afc09c2fab49b29e0ef8d16d4 | |
parent | 73e276fbc2ca57aea798ccb044787d613626cb23 (diff) |
Urlize todo list descriptions on dashboard
Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r-- | templates/devel/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/devel/index.html b/templates/devel/index.html index f4a81102..0505ff14 100644 --- a/templates/devel/index.html +++ b/templates/devel/index.html @@ -81,7 +81,7 @@ <td><a href="{{ todo.get_absolute_url }}" title="View todo list: {{ todo.name }}">{{ todo.name }}</a></td> <td>{{ todo.date_added|date }}</td> - <td class="wrap">{{ todo.description|safe }}</td> + <td class="wrap">{{ todo.description|urlize }}</td> </tr> {% empty %} <tr class="empty"><td colspan="3"><em>No package todo lists to display</em></td></tr> |