Updated the results template to allow links, with autoescape.

This commit is contained in:
Klemm89 2014-11-05 15:38:50 -05:00
parent 7b6500982c
commit 18f987a5d5
1 changed files with 2 additions and 0 deletions

View File

@ -3,7 +3,9 @@
{% for msg in messages %}
<div>
<p class="pull-left"><span class="label label-{{ msg.shortcode }}">{{ msg.shortcode }}</span></p>
{% autoescape false %}
<p class="offset1">{{ msg.message }}</p>
{% endautoescape %}
</div>
{% endfor %}
{% endif %}