{% extends "./base_template_profiles.html" %} {% load i18n %} {% load static %} {% load thumbnail %} {% load crispy_forms_tags %} {% block head %} {{ block.super }} {{ profile_form.media.css }} {{ form.media.css }} {{ form.media.js }} {% endblock head %} {% block profile_right %}
{% csrf_token %}

{% trans "Personal information" %}

{{ profile_form.title|as_crispy_field }} {{ user_form.name|as_crispy_field }} {{ user_form.email|as_crispy_field }} {{ profile_form.country|as_crispy_field }} {{ profile_form.language|as_crispy_field }}

{% trans "Bio & Interest Areas" %}

{{ profile_form.bio|as_crispy_field }} {{ profile_form.orcid|as_crispy_field }} {{ profile_form.lattes_id|as_crispy_field }} {{ profile_form.interestAreas|as_crispy_field }}

{% trans "Picture" %}

{{ profile_form.picture|as_crispy_field }}
{% endblock profile_right %} {% block scripts %} {{ block.super }} {{ profile_form.media.js }} {% endblock scripts %}