diff --git a/conversations/templates/conversations/_message_detail.html b/conversations/templates/conversations/_message_detail.html index 143407c..090db4f 100644 --- a/conversations/templates/conversations/_message_detail.html +++ b/conversations/templates/conversations/_message_detail.html @@ -1,10 +1,8 @@ -{% load proposals_tags %} -
{{ message.created }} | {{ message.author.profile }}
- {% markdown message.content %} + {{ message.content|linebreaksbr }}
diff --git a/conversations/templates/conversations/emails/message.html b/conversations/templates/conversations/emails/message.html index 142d995..af1a03d 100644 --- a/conversations/templates/conversations/emails/message.html +++ b/conversations/templates/conversations/emails/message.html @@ -1,4 +1,4 @@ -{% load proposals_tags %}{% markdown content %} +{{ content|linebreaksbr }}
{% if answering %} diff --git a/conversations/templates/conversations/emails/talk_notification.html b/conversations/templates/conversations/emails/talk_notification.html index a8056ae..1db0dae 100644 --- a/conversations/templates/conversations/emails/talk_notification.html +++ b/conversations/templates/conversations/emails/talk_notification.html @@ -1,11 +1,11 @@ -{% load proposals_tags %}Hi!
+Hi!

A new {{ talk.event }} has been proposed by {{ proposer.profile }}!

Title: {{ talk.title }}

Description:
-

{% markdown talk.description %}

+

{{ talk.description|linebreaksbr }}

{% if answering %}
Reply to this email directly to comment this talk.{% endif %}