{% extends "email/base.html" %} {% block title %}Assessment Reminder{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="warning" hero_title="Your Assessment Is Still Open" hero_subtitle="Finish before your invitation expires." hero_icon="document-add.png" %} {% endblock %} {% block content %}

Hi {{ candidate_name }},

Your assessment for {{ company_name }} is still open. Use the link below to continue before the deadline passes.

{% if days_remaining == 1 %} {% include "email/partials/_detail_row.html" with pill_label="TIME REMAINING" pill_value="1 day left" pill_variant="warning" pill_radius="top" %} {% else %} {% include "email/partials/_detail_row.html" with pill_label="TIME REMAINING" pill_value=days_remaining|stringformat:"s"|add:" days left" pill_variant="warning" pill_radius="top" %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENT" pill_value=assessment_title pill_variant="primary" %} {% include "email/partials/_detail_row.html" with pill_label="TIME LIMIT" pill_value=time_limit pill_variant="gray" %} {% if task_count %} {% include "email/partials/_detail_row.html" with pill_label="TASKS" pill_value=task_count pill_variant="gray" %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="EXPIRES" pill_value=expires_at pill_variant="warning" pill_border="none" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=assessment_url cta_label="Continue Assessment" %}

After the deadline, this link will no longer work.

{% endblock %}