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

{% if object.name_display %} {{ object.name_display }} {% else %} {{ object.name_full }} {% endif %} {% if object.data_type%}({{ object.data_type }}) {% endif %}

  • First Name: {{ object.name_first }}

  • Last Name: {{ object.name_last }}

  • Nick Name: {{ object.name_nickname }}

  • Acronym: {{ object.acronym }}

{% if object.image %}
image
{% endif %}

Description: {{ object.description }}

{% for key, value in contact_dict.items %} {% endfor %}
{{ key }} {{ value | urlize }}
e-mail urlize - {{ object.email | urlize }}
Tel.(office) {{ object.phone_number_office }}
Tel.(lab) {{ object.phone_number_lab }}
Tel.(mobile) {{ object.phone_number_mobile }}
e-mail {{ object.email }}
Tel.(office) {{ object.phone_number_office }}
Tel.(lab) {{ object.phone_number_lab }}
Tel.(mobile) {{ object.phone_number_mobile }}
{% endblock content %}