{% extends "email/base.html" %} {% block title %}Your {{ wrap_year }} at Praxicraft{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="solid-primary" hero_title=wrap_hero_title|default:"Your Year Wrap" hero_subtitle=wrap_hero_subtitle|default:intro hero_icon="confetti.png" %} {% endblock %} {% block content %}

Hi {{ first_name }},

{{ intro }}

{% if learning_mode != "self_paced" %} {% include "email/partials/_stat_tile.html" with tile_label="XP EARNED" tile_value=xp_earned_formatted tile_suffix=" XP" tile_variant="purple" %} {% include "email/partials/_stat_tile.html" with tile_label="TASKS SOLVED" tile_value=tasks_this_year tile_variant="success" %} {% include "email/partials/_stat_tile.html" with tile_label="CURRENT RANK" tile_value=rank_title|default:"Not ranked" tile_variant="warning" %} {% include "email/partials/_stat_tile.html" with tile_label="LONGEST STREAK" tile_value=longest_streak tile_suffix=" days" tile_variant="warning" %}
{% else %} {% include "email/partials/_stat_tile.html" with tile_label="INVESTIGATIONS SOLVED" tile_value=tasks_this_year tile_variant="success" tile_width="100%" %}
{% endif %} {% if promotions_this_year and learning_mode != "self_paced" %} {% include "email/partials/_stat_tile.html" with tile_label="PROMOTIONS" tile_value=promotions_this_year tile_variant="primary" tile_width="100%" %}
{% endif %} {% if closing %}

{{ closing }}

{% endif %} {% include "email/partials/_cta.html" with cta_url=dashboard_url cta_label="Continue Learning" %} {% include "email/partials/_settings_prefs_note.html" %} {% endblock %}