summaryrefslogtreecommitdiffstats
path: root/templates/todolists/list.html
diff options
context:
space:
mode:
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 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 }}</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>