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 %}