From bdd1855ae593e84d951981a0a84714b763ed1cb6 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Tue, 14 Oct 2014 05:03:39 -0400 Subject: [PATCH] Issue #3, Removal of the last blind |safe filtering --- mayan/apps/main/templates/main/generic_assign_remove.html | 2 +- mayan/apps/main/templates/main/generic_subtemplate.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mayan/apps/main/templates/main/generic_assign_remove.html b/mayan/apps/main/templates/main/generic_assign_remove.html index 7d8ede337b..07a2573c71 100644 --- a/mayan/apps/main/templates/main/generic_assign_remove.html +++ b/mayan/apps/main/templates/main/generic_assign_remove.html @@ -9,7 +9,7 @@ #id_right_list,#id_left_list { min-width: 28em; min-height: 13em; }
-

{{ title|safe }}

+

{{ title }}

{% csrf_token %} diff --git a/mayan/apps/main/templates/main/generic_subtemplate.html b/mayan/apps/main/templates/main/generic_subtemplate.html index 3320b8d6d9..aae36faa87 100644 --- a/mayan/apps/main/templates/main/generic_subtemplate.html +++ b/mayan/apps/main/templates/main/generic_subtemplate.html @@ -9,11 +9,11 @@ {% endif %} {% if content %} -

{{ content|safe }}

+

{{ content }}

{% endif %} {% for paragraph in paragraphs %} -

{{ paragraph|safe }}

+

{{ paragraph }}

{% endfor %}