Fix escaping in presentation detail

This commit is contained in:
Tobias 2019-01-04 12:17:14 +13:00
parent d1ff8d7253
commit 1d7b851bb6

View file

@ -49,7 +49,9 @@
<div class="col-12 col-lg-7 order-1 order-lg-2 px-4 talk-abstract"> <div class="col-12 col-lg-7 order-1 order-lg-2 px-4 talk-abstract">
<h4 class="mt-4">Abstract</h4> <h4 class="mt-4">Abstract</h4>
<div class="abstract pb-4"><p>{{ presentation.abstract_html|clean_text|urlize|safe }}</p></div> {% autoescape off %}
<div class="abstract pb-4"><p>{{ presentation.abstract_html|safe|clean_text|urlize }}</p></div>
{% endautoescape %}
</div> </div>
{% if presentation.unpublish %} {% if presentation.unpublish %}
<p><strong>Presentation not published.</strong></p> <p><strong>Presentation not published.</strong></p>