{% extends 'base.html' %} {% block content %}
Код
{{ div.contact_info.code }}
Имя
{{ div.contact_info.code }}
Краткое имя
{{ div.contact_info.short_name }}
Email
{{ div.contact_info.email }}
Руководители
{% for item in div.contact_info.head %} {% endfor %}
Id Фамилия Имя Отчество Дата заступления Дата снятия
{{ 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 %}
Телефоны
{% for item in div.contact_info.phone_numbers %} {% endfor %}
Id Номер Дата заступления Дата снятия
{{ 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 %}
Местоположения
{% for item in div.contact_info.locations %} {% endfor %}
Id Страна Город Улица Здание Комната Дата заступления Дата снятия
{{ 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 %}
{% endblock %}