{% extends "./base_template_profiles.html" %} {% load i18n %} {% block profile_right %} {% if show_user.profile.bio %}

{% trans "Bio and disciplinary background" %}

{{ show_user.profile.bio | safe }} {% endif %} {% if show_user.profile.has_professional_info %}

{% translate "Professional Information" %}

{% if show_user.profile.lattes_id %} {% translate 'Lattes' %} {% endif %} {% if show_user.profile.orcid %} {% translate 'ORCID' %} {% endif %} {% endif %} {% if show_user.profile.interestAreas.all %}

{% trans "Interest areas" %}

{% for area in show_user.profile.interestAreas.all %} {{ area }} {% endfor %} {% endif %} {% if show_user.profile.organisation.all %}

{% trans "Organisations" %}

{% for organisation in show_user.profile.organisation.all %}
{% include "horizontal_card_organisation.html" %}
{% endfor %}
{% endif %} {% endblock profile_right %}