{% extends "email/base.html" %} {% block title %}Interview invitation{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Interview invitation" hero_subtitle=interview_title|default:job_title hero_icon="document-add.png" %} {% endblock %} {% block content %} {% if custom_body_html %}
{{ custom_body_html|safe }}
{% else %}

Hi {{ candidate_name }},

{{ company_name }} invited you to an interview: {{ interview_title }}.

{% if scheduled_at %}

Scheduled for {{ scheduled_at }}{% if interviewer_name %} with {{ interviewer_name }}{% endif %}.

{% endif %}

Use the button below to join when it is time.

{% endif %} {% include "email/partials/_detail_row.html" with pill_label="INTERVIEW" pill_value=interview_title pill_variant="primary" pill_radius="top" %} {% if scheduled_at %} {% include "email/partials/_detail_row.html" with pill_label="WHEN" pill_value=scheduled_at pill_variant="gray" %} {% endif %} {% if interviewer_name %} {% include "email/partials/_detail_row.html" with pill_label="WITH" pill_value=interviewer_name pill_variant="gray" %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="COMPANY" pill_value=company_name pill_variant="primary" pill_border="none" pill_radius="bottom" %}
{% if next_step_url %} {% include "email/partials/_cta.html" with cta_url=next_step_url cta_label=cta_label|default:"Open interview" %} {% endif %}

This link is personal to you. Questions go to {{ company_name }}.

{% endblock %}