Skip to content
Snippets Groups Projects
Commit f23b3f40 authored by Igor Biki's avatar Igor Biki Committed by Igor Biki
Browse files

ISTWCMS-5618: Using markdown parser to parse links and bio field.

parent c4723361
No related branches found
No related tags found
1 merge request!205Feature/istwcms 5618 ibiki ofis updates
......@@ -18,10 +18,10 @@
<div>Phone: {{ ofis_data.profile.profile_phones }}</div>
{% endif %}
{% if ofis_data.profile.personal_url %}
<div><a href="{{ ofis_data.profile.personal_url }}">Personal Website</a></div>
<div>Personal Website: {{ ofis_data.profile.personal_url | striptags('<a>') | raw }}</div>
{% endif %}
{% if ofis_data.profile.lab_url %}
<div><a href="{{ ofis_data.profile.lab_url }}">Lab/Research Website</a></div>
<div>Lab/Research Website: {{ ofis_data.profile.lab_url | striptags('<a>') | raw }}</div>
{% endif %}
{% if ofis_data.profile.active %}
<div>Status: {{ ofis_data.profile.active }}</div>
......@@ -33,7 +33,7 @@
</div>
{% if ofis_data.profile.profile_bio %}
<h2>Biography</h2>
<div>{{ ofis_data.profile.profile_bio }}</div>
<div>{{ ofis_data.profile.profile_bio | raw }}</div>
{% endif %}
{% if ofis_data.profile.research %}
<h2>Research Interests</h2>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment