# HG changeset patch # User ymh # Date 1530798534 -7200 # Node ID ccb0db163d694ee91128f42ee386cdc0672e0931 # Parent 3a6b8a017e31ef442ed827539ffbf63102a2d48d Mark field help text as safe diff -r 3a6b8a017e31 -r ccb0db163d69 src/iconolab/templates/registration/register.html --- a/src/iconolab/templates/registration/register.html Thu Jul 05 13:52:05 2018 +0200 +++ b/src/iconolab/templates/registration/register.html Thu Jul 05 15:48:54 2018 +0200 @@ -25,9 +25,9 @@ {% endif %} {% if field.errors %} - {{ field.errors.as_text }} + {{ field.errors.as_text | safe }} {% else %} - {{ field.help_text }} + {{ field.help_text | safe }} {% endif %} {% endfor %}