{% extends 'lara_django_base/lara_base.html' %} {% load static %} {% block toolbar %}

{{ section_title }}

{% endblock %} {% block content %}
{% if object.entity_type == 'person' %} {% include 'lara_django_people/person_detail.html' %} {% elif object.entity_type == 'organization' %} {% include 'lara_django_people/organization_detail.html' %} {% elif object.entity_type == 'project' %} {% include 'lara_django_people/project_detail.html' %} {% endif %}
card-image
{% if object.title %}{{ object.title }} {% endif %} {{ object.name_full }} {% if object.category %}({{ object.category }}) {% endif %}

{{ object.description }}

  • First Name: {{ object.name_first }}

  • Last Name: {{ object.name_last }}

  • Nick Name: {{ object.name_nickname }}

  • Acronym: {{ object.acronym }}

e-mail: {{ object.email }}

Tel.(office): {{ object.phone_number_office }}

Tel.(lab): {{ object.phone_number_lab }}

Tel.(mobile): {{ object.phone_number_mobile }}

{% endblock %}