diff options
author | Dan McGee <dan@archlinux.org> | 2010-08-27 09:50:55 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-08-27 09:50:55 -0500 |
commit | ff427f6d9bbcedebcdfc671bc13ab54a225b6cdf (patch) | |
tree | 9b7ccbfd1a7cf86f7213c4470f1e5192b4c3ff50 /templates/todolists/list.html | |
parent | 661b5e6b639dc224eecd5a992ff6e5c1fbb672ea (diff) |
Mark todolist description as being safe to contain HTML
Hopefully we can trust our developers on this one. :)
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'templates/todolists/list.html')
-rw-r--r-- | templates/todolists/list.html | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/templates/todolists/list.html b/templates/todolists/list.html index 9d278aa5..3b2f75c2 100644 --- a/templates/todolists/list.html +++ b/templates/todolists/list.html @@ -1,4 +1,5 @@ {% extends "base.html" %} + {% block title %}Arch Linux - Todo Lists{% endblock %} {% block content %} @@ -29,7 +30,7 @@ title="View todo list: {{ list.name }}">{{ list.name }}</a></td> <td>{{ list.date_added }}</td> <td>{{ list.creator.get_full_name }}</td> - <td class="wrap">{{ list.description }}</td> + <td class="wrap">{{ list.description|safe }}</td> <td>{% if list.complete %}<span class="complete">Complete</span> {% else %}<span class="incomplete">Incomplete</span>{% endif %}</td> </tr> |