{% 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 %}

Description: {{ object.description }}

  • Users: {% for user in object.users.all %} {{ user.name_full }} ({{ user.acronym }}) {% if not forloop.last %},{% endif %} {% endfor %}

  • Groups: {% for group in object.groups.all %} {{ group.name }} {% endfor %}

  • {% 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 %}