Fix escaping in presentation detail
This commit is contained in:
parent
d1ff8d7253
commit
1d7b851bb6
1 changed files with 3 additions and 1 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue