Код
{{ ent.contact_info.code }}
Имя
{{ ent.contact_info.code }}
Краткое имя
{{ ent.contact_info.short_name }}
Email
{{ ent.contact_info.email }}
Отделы
|
Id
|
Код
|
Имя
|
Краткое имя
|
Email
|
|
{% for item in ent.divisions %}
|
{{ item.id }}
|
{{ item.contact_info.code }}
|
{{ item.contact_info.name }}
|
{{ item.contact_info.short_name }}
|
{{ item.contact_info.email }}
|
Детали
|
{% endfor %}
Руководители
|
Id
|
Фамилия
|
Имя
|
Отчество
|
Дата заступления
|
Дата снятия
|
|
{% for item in ent.contact_info.head %}
|
{{ item.id }}
|
{{ item.last_name }}
|
{{ item.first_name }}
|
{{ item.second_name }}
|
{{ item.date_of_start }}
|
{% if not item.date_of_end %}
---
{% else %}
{{ item.date_of_end }}
{% endif %}
|
{% if not item.date_of_end %}
Активен
{% endif %}
|
{% endfor %}
Телефоны
|
Id
|
Номер
|
Дата заступления
|
Дата снятия
|
|
{% for item in ent.contact_info.phone_numbers %}
|
{{ item.id }}
|
{{ item.number }}
|
{{ item.date_of_start }}
|
{% if not item.date_of_end %}
---
{% else %}
{{ item.date_of_end }}
{% endif %}
|
{% if not item.date_of_end %}
Активен
{% endif %}
|
{% endfor %}
Местоположения
|
Id
|
Страна
|
Город
|
Улица
|
Здание
|
Комната
|
Дата заступления
|
Дата снятия
|
|
{% for item in ent.contact_info.locations %}
|
{{ item.id }}
|
{{ item.country }}
|
{{ item.city }}
|
{{ item.street }}
|
{{ item.house }}
|
{{ item.room }}
|
{{ item.date_of_start }}
|
{% if not item.date_of_end %}
---
{% else %}
{{ item.date_of_end }}
{% endif %}
|
{% if not item.date_of_end %}
Активен
{% endif %}
|
{% endfor %}
{% endblock %}