{% extends "base.html" %} {% block title %}{{ employee_view.full_name }} · MIEM Employees{% endblock %} {% block content %}

{{ employee_view.full_name or employee.profile_key }}

{{ employee_view.status }}
{{ employee_view.canonical_url }}

Основная информация

Должности
{% if employee_view.positions %}
    {% for position in employee_view.positions %}
  • {{ position }}
  • {% endfor %}
{% else %} Не указано {% endif %}
Год начала работы в ВШЭ
{{ employee_view.hse_start_year or "Не указано" }}
Profile type
{{ employee_view.profile_type or "Не указано" }}
Profile ID
{{ employee_view.profile_id or "Не указано" }}
First seen
{{ employee_view.first_seen_at or "Не указано" }}
Last seen
{{ employee_view.last_seen_at or "Не указано" }}
Dismissed at
{{ employee_view.dismissed_at or "Не указано" }}
Parser version
{{ employee_view.parser_version or "Не указано" }}

Контакты

Email
{% if employee_view.contacts.emails %}
    {% for email in employee_view.contacts.emails %}
  • {{ email }}
  • {% endfor %}
{% else %} Не указано {% endif %}
Телефоны
{{ employee_view.contacts.phones | join(", ") if employee_view.contacts.phones else "Не указано" }}
Адрес
{{ employee_view.contacts.address or "Не указано" }}
{% if employee_view.contacts.contact_items %}
Прочее
    {% for item in employee_view.contacts.contact_items %}
  • {{ item }}
  • {% endfor %}
{% endif %}
{% if employee_view.external_ids %}

Внешние идентификаторы

{% endif %}

Разделы профиля

{% if employee_view.sections %}
{% for section in employee_view.sections %}

{{ section.title }}

{{ section.type }}
{% if section.type == "year_blocks" and section.year_entries %}
    {% for entry in section.year_entries %}
  • {% if entry.year %}{{ entry.year }}: {% endif %}{{ entry.text }}
  • {% endfor %}
{% elif section.type == "publications" and section.publications %} {% if section.publications_count %}

Всего: {{ section.publications_count }}

{% endif %}
    {% for publication in section.publications %}
  • {% if publication.url %} {{ publication.title }} {% else %} {{ publication.title }} {% endif %} {% if publication.text and publication.text != publication.title %}
    {{ publication.text }}
    {% endif %}
  • {% endfor %}
{% elif section.type == "courses_by_year" and section.courses %} {% if section.academic_year %}

Учебный год: {{ section.academic_year }}

{% endif %}
    {% for course in section.courses %}
  • {% if course.url %} {{ course.title }} {% else %} {{ course.title }} {% endif %}
  • {% endfor %}
{% elif section.type == "table" and section.table %}
{% if section.table.headers %} {% for header in section.table.headers %}{% endfor %} {% endif %} {% for row in section.table.rows %} {% for cell in row.cells %} {% endfor %} {% endfor %}
{{ header }}
{{ cell }}
{% else %} {% if section.paragraphs %} {% for paragraph in section.paragraphs %}

{{ paragraph }}

{% endfor %} {% endif %} {% if section.list_items %}
    {% for item in section.list_items %}
  • {{ item }}
  • {% endfor %}
{% endif %} {% endif %} {% if section.links and section.type not in ["courses_by_year"] %} {% endif %}
{% endfor %}
{% else %}

Разделы профиля не найдены.

{% endif %}

Snapshots

{% for snapshot in snapshots %} {% endfor %}
CapturedChecksumParser
{{ snapshot.captured_at }}{{ snapshot.checksum }}{{ snapshot.parser_version }}
{% endblock %}