From f97971faa45f78e4e463f4614c5827076f6025e2 Mon Sep 17 00:00:00 2001 From: Edward Ribeiro Date: Mon, 7 Mar 2016 10:17:40 -0300 Subject: [PATCH] =?UTF-8?q?Adiciona=20|safe=20nos=20campos=20do=20CRUD=20a?= =?UTF-8?q?utom=C3=A1tico?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- templates/crud/detail.html | 2 +- templates/crud/list.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/crud/detail.html b/templates/crud/detail.html index 4e5d6b019..f35d0d469 100644 --- a/templates/crud/detail.html +++ b/templates/crud/detail.html @@ -23,7 +23,7 @@

{{ column.verbose_name }}

-

{{ column.text }}

+

{{ column.text|safe }}

diff --git a/templates/crud/list.html b/templates/crud/list.html index f7100fff7..cfa20b5aa 100644 --- a/templates/crud/list.html +++ b/templates/crud/list.html @@ -33,7 +33,7 @@ {% if href %} {{ value }} {% else %} - {{ value }} + {{ value|safe }} {% endif %} {% endfor %}