allow html on user.summary

This commit is contained in:
Trinity Pointard
2018-06-11 16:05:18 +02:00
parent 7d17751f50
commit d8f32afeb0
3 changed files with 8 additions and 7 deletions
+1 -1
View File
@@ -28,7 +28,7 @@
</div>
<div>
{{ user.summary }}
{{ user.summary | safe }}
</div>
{% if recents | length != 0 %}
+1 -1
View File
@@ -23,7 +23,7 @@
{% for follower in followers %}
<div class="card">
<h3><a href="{{ follower.ap_url }}/">{{ follower.display_name }}</a> &mdash; @{{ follower.fqn }}</h3>
<main><p>{{ follower.summary }}</p></main>
<main><p>{{ follower.summary | safe }}</p></main>
</div>
{% endfor %}
</div>