From 00f4cef0c931aa22b4c706094e1f040685685b1e Mon Sep 17 00:00:00 2001 From: Kalle Westerling Date: Tue, 8 Sep 2020 11:22:22 -0400 Subject: [PATCH] adding safe flag for profile bio --- learner/templates/learner/profile.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/learner/templates/learner/profile.html b/learner/templates/learner/profile.html index 431f81b8..b1a5b9fd 100644 --- a/learner/templates/learner/profile.html +++ b/learner/templates/learner/profile.html @@ -44,7 +44,7 @@

{{ user.email }}{% if user.is_staff and user.email %} | {% elif user.is_staff %}Staff{% endif %}

-

{{ user.profile.bio }}

+

{{ user.profile.bio | safe }}

{% if profile.links.count %} {% if profile.personal_links.count %}

Personal links{% for link in profile.personal_links.all %}{{ link.label }}{% endfor %}

{% endif %}