From 8dce37b90c36c849e428cab6db9e883cf0cd21a4 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Sun, 4 Jan 2009 11:45:10 -0800 Subject: un-escaped some html with |safe --- bn_django/photos/templates/photos/photo_detail.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bn_django/photos/templates/photos/photo_detail.html') diff --git a/bn_django/photos/templates/photos/photo_detail.html b/bn_django/photos/templates/photos/photo_detail.html index 1278bda..121c36c 100644 --- a/bn_django/photos/templates/photos/photo_detail.html +++ b/bn_django/photos/templates/photos/photo_detail.html @@ -62,10 +62,10 @@ by {{ object.photographer }}.

alt="{{ object.title }}" />
-

{{ object.desc }}

+

{{ object.desc|safe }}

{% if object.extra %}

More information

-

{{ object.extra }}

+

{{ object.extra|safe }}

{% endif %}
-- cgit v1.2.3