{% extends "email/base.html" %} {% block title %}Sprint Completed | Praxicraft{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Sprint done" hero_subtitle=sprint_label hero_icon="layers.png" hero_accent_icon="confetti.png" %} {% endblock %} {% block content %}

Hi {{ first_name }},

You cleared the tasks in this sprint. XP is updated. See the summary below.

{% include "email/partials/_detail_row.html" with pill_label="SPRINT" pill_value=sprint_label pill_variant="gray" pill_radius="top" %} {% include "email/partials/_detail_row.html" with pill_label="TASKS CLEARED" pill_value=tasks_cleared_label pill_variant="gray" %} {% if xp_earned %} {% with xp_num=xp_earned|stringformat:"s" %} {% with xp_display="+"|add:xp_num|add:" XP" %} {% include "email/partials/_detail_row.html" with pill_label="XP EARNED" pill_value=xp_display pill_variant="gray" %} {% endwith %} {% endwith %} {% endif %} {% include "email/partials/_detail_row.html" with pill_label="SPRINT STATUS" pill_value="Done" pill_variant="success" pill_border="none" pill_radius="bottom" %}
{% include "email/partials/_cta.html" with cta_url=sprints_url|default:dashboard_url cta_label="View Your Sprints" %} {% include "email/partials/_settings_prefs_note.html" %} {% endblock %}