From a0b2e5f864e095a162d1207d55579e608080e52e Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Fri, 1 Jul 2011 20:52:52 -0400 Subject: [PATCH] Removed the implicit safe filter to allow for localization of dates --- apps/common/templates/generic_list_subtemplate.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/common/templates/generic_list_subtemplate.html b/apps/common/templates/generic_list_subtemplate.html index 242603cbeb..2ac52b2dd7 100644 --- a/apps/common/templates/generic_list_subtemplate.html +++ b/apps/common/templates/generic_list_subtemplate.html @@ -101,24 +101,24 @@ {% for column in extra_columns_preffixed %} {% if column.keep_together %} - {{ object|object_property:column.attribute|safe|make_non_breakable }} + {{ object|object_property:column.attribute|make_non_breakable }} {% else %} - {{ object|object_property:column.attribute|safe }} + {{ object|object_property:column.attribute }} {% endif %} {% endfor %} {% if not hide_columns %} {% for column in object|get_model_list_columns %} - {{ object|object_property:column.attribute|safe }} + {{ object|object_property:column.attribute }} {% endfor %} {% endif %} {% for column in extra_columns %} {% if column.keep_together %} - {{ object|object_property:column.attribute|safe|make_non_breakable }} + {{ object|object_property:column.attribute|make_non_breakable }} {% else %} - {{ object|object_property:column.attribute|safe }} + {{ object|object_property:column.attribute }} {% endif %} {% endfor %} {% if not hide_links %}