summaryrefslogtreecommitdiffstats
path: root/templates/todolists/list.html
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2010-08-27 09:50:55 -0500
committerDan McGee <dan@archlinux.org>2010-08-27 09:50:55 -0500
commitff427f6d9bbcedebcdfc671bc13ab54a225b6cdf (patch)
tree9b7ccbfd1a7cf86f7213c4470f1e5192b4c3ff50 /templates/todolists/list.html
parent661b5e6b639dc224eecd5a992ff6e5c1fbb672ea (diff)
downloadarchweb-ff427f6d9bbcedebcdfc671bc13ab54a225b6cdf.tar.gz
archweb-ff427f6d9bbcedebcdfc671bc13ab54a225b6cdf.zip
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.html3
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>