aboutsummaryrefslogtreecommitdiffstats
path: root/templates/news
diff options
context:
space:
mode:
Diffstat (limited to 'templates/news')
-rw-r--r--templates/news/list.html2
-rw-r--r--templates/news/show.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/news/list.html b/templates/news/list.html
index 6ddf85a..ecb0714 100644
--- a/templates/news/list.html
+++ b/templates/news/list.html
@@ -11,7 +11,7 @@
</div>
<div class="news_content">
- {{ news.content }}
+ {{ news.content|safe }}
</div>
{% endfor %}
</div>
diff --git a/templates/news/show.html b/templates/news/show.html
index 459d9a4..35c510f 100644
--- a/templates/news/show.html
+++ b/templates/news/show.html
@@ -13,7 +13,7 @@
<h1>{{news.title}}</h1>
<div class="news_content">
-{{news.content}}
+{{news.content|safe}}
</div>
<hr/>