fix(templates): Fix double-escaping of thread titles

This commit is contained in:
Vincent Ambo 2018-04-16 11:03:15 +02:00
parent 1462810963
commit 9c2359c8c9
2 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@
{% for thread in threads -%}
<a href="/thread/{{ thread.id }}" class="list-group-item list-group-item-action flex-column align-items-start {%- if thread.sticky %} bg-secondary text-white {% endif -%}">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">{% if thread.sticky %}<span class="badge badge-light">Sticky</span> {% endif %}{{ thread.title }}</h5>
<h5 class="mb-1">{% if thread.sticky %}<span class="badge badge-light">Sticky</span> {% endif %}{{ thread.title | safe }}</h5>
<small class="{% if thread.sticky %}text-white{% else %}text-muted{% endif %}">{{ thread.posted }}</small>
</div>
<p class="mb-1">Created by {{ thread.author_name }}</p>