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

Hi {{ candidate_name }},

This is a reminder to respond to your offer for {{ job_title }} at {{ company_name }}. The offer letter PDF is attached again for your records.

{% endif %} {% include "email/partials/_detail_row.html" with pill_label="ROLE" pill_value=job_title pill_variant="primary" pill_radius="top" %} {% if expires_display %} {% include "email/partials/_detail_row.html" with pill_label="RESPOND BY" pill_value=expires_display pill_variant="warning" pill_border="none" pill_radius="bottom" %} {% else %} {% include "email/partials/_detail_row.html" with pill_label="STATUS" pill_value="Awaiting your response" pill_variant="gray" pill_border="none" pill_radius="bottom" %} {% endif %}
{% if cta_url %} {% include "email/partials/_cta.html" with cta_url=cta_url cta_label=cta_label|default:"Respond to offer" %} {% endif %} {% endblock %}