{% extends "email/base.html" %} {% load inflections %} {% load translations %} {% block body %}

Добрый день!

{{ instance.get_full_name }} приглашен{% if instance.gender == 'female' %}а{% endif %} на очное интервью.

Если вам интересен кандидат, и вы хотели бы присоединиться к интервью, пожалуйста, подтвердите его на своей вакансии (палец вверх).
Если кандидат вам не подходит, пожалуйста, нажмите отказ (палец вниз).

Города рассмотрения: {% for c in instance.target_cities.all %}{{ c.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
Профессии: {% for p in professions %}{{ p.name }}{% if not forloop.last %}, {% endif %}{% endfor %}
Ключевые навыки: {% for s in instance.candidate_skills.all %}{{ s.skill.name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% if interviews %} {% include "email/candidates/candidate-interviews-part.html" %} {% endif %} {% if comment %}

Дополнительная информация:
{% autoescape off %}{{ comment }}{% endautoescape %}

{% endif %}

По всем вопросам, пожалуйста, обратитесь к рекрутерам: {% for recruiter in instance.responsibles.all %} {{ recruiter.get_full_name }}{% if not forloop.last %}, {% endif %} {% endfor %}

{% endblock %}