{% extends "email/base.html" %} {% block title %}Assessment Results Ready{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Candidate Finished the Assessment" hero_subtitle="Review scores and task submissions when you are ready." hero_icon="document-add.png" %} {% endblock %} {% block content %}

Hi {{ admin_name }},

A candidate completed “{{ assessment_title }}”. Open the results page to review task submissions, scores, and notes before your next interview step.

{% include "email/partials/_detail_row.html" with pill_label="CANDIDATE" pill_value=candidate_name pill_variant="primary" pill_radius="top" %} {% if score_display %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENT SCORE" pill_value=score_display pill_variant="primary" %} {% elif score %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENT SCORE" pill_value=score|stringformat:"s"|add:"%" pill_variant="primary" %} {% else %} {% include "email/partials/_detail_row.html" with pill_label="ASSESSMENT SCORE" pill_value="Not scored yet" pill_variant="primary" %} {% endif %} {% if completion_time %} {% include "email/partials/_detail_row.html" with pill_label="COMPLETION TIME" pill_value=completion_time pill_variant="primary" pill_border="none" %} {% endif %} {% include "email/partials/_detail_row.html" with pill_footer="Check code, queries, and task logs in the results view before you move the candidate forward." pill_border="top" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=results_url cta_label="View Assessment Results" %} {% endblock %}