From ff427f6d9bbcedebcdfc671bc13ab54a225b6cdf Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 27 Aug 2010 09:50:55 -0500 Subject: Mark todolist description as being safe to contain HTML Hopefully we can trust our developers on this one. :) Signed-off-by: Dan McGee --- templates/todolists/list.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'templates/todolists/list.html') diff --git a/templates/todolists/list.html b/templates/todolists/list.html index 9d278aa..3b2f75c 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 }} {{ list.date_added }} {{ list.creator.get_full_name }} - {{ list.description }} + {{ list.description|safe }} {% if list.complete %}Complete {% else %}Incomplete{% endif %} -- cgit v1.2.3-24-g4f1b