From 89ef2bc7ee9c1786cdabe3efa8ab6259877b4caf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89lie=20Bouttier?= Date: Mon, 29 Sep 2014 23:42:25 +0200 Subject: [PATCH] do not escape emails content --- templates/emails/new_comment.html | 2 +- templates/emails/new_issue.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/emails/new_comment.html b/templates/emails/new_comment.html index 79512e7..f7210b8 100644 --- a/templates/emails/new_comment.html +++ b/templates/emails/new_comment.html @@ -1,4 +1,4 @@ -{{ comment }} +{{ comment|safe }} -- Respond on PonyTracker: {{ uri }} diff --git a/templates/emails/new_issue.html b/templates/emails/new_issue.html index c145060..9bae6b8 100644 --- a/templates/emails/new_issue.html +++ b/templates/emails/new_issue.html @@ -1,5 +1,5 @@ {% if description %} -{{ description }} +{{ description|safe }} {% else %} No description. {% endif %}