diff --git a/django_mptt_comments/templates/django_mptt_comments/reply.html b/django_mptt_comments/templates/django_mptt_comments/reply.html index b39e157..35e981e 100644 --- a/django_mptt_comments/templates/django_mptt_comments/reply.html +++ b/django_mptt_comments/templates/django_mptt_comments/reply.html @@ -8,7 +8,7 @@
{{ mpttcomment.submit_date }} - {{ mpttcomment.name }}
-

{{ mpttcomment.comment }}

+

{{ mpttcomment.comment_html|safe }}


{% include 'comments/form.html' with form=form %} diff --git a/example/templates/comments/list.html b/example/templates/comments/list.html index 35e3975..f8c977f 100644 --- a/example/templates/comments/list.html +++ b/example/templates/comments/list.html @@ -6,7 +6,7 @@ {{ node.submit_date }} - {{ node.name }} reply
-

{{ node.comment }}

+

{{ node.comment_html|safe }}

{% if not node.is_leaf_node %}