{% extends "email/base.html" %} {% block title %}Your weekly Praxicraft digest{% endblock %} {% block hero %} {% include "email/partials/_hero.html" with hero_variant="primary" hero_title="Your week on Praxicraft" hero_subtitle="Last 7 days" hero_icon="chart-square.png" hero_accent_icon="pie-chart.png" %} {% endblock %} {% block content %}

Hi {{ first_name }},

Here is what you shipped this week.

{% if learning_mode == "self_paced" %} {% include "email/partials/_stat_tile.html" with tile_label="TASKS SOLVED" tile_value=tasks_solved tile_variant="primary" %} {% include "email/partials/_stat_tile.html" with tile_label="TOTAL COMPLETED" tile_value=total_cases_completed tile_variant="purple" %}
{% else %} {% include "email/partials/_stat_tile.html" with tile_label="TASKS SOLVED" tile_value=tasks_solved tile_variant="primary" %} {% include "email/partials/_stat_tile.html" with tile_label="XP EARNED" tile_value=xp_earned_display|default:xp_earned tile_suffix=" XP" tile_variant="purple" %} {% include "email/partials/_stat_tile.html" with tile_label="CURRENT RANK" tile_value=rank_title tile_variant="success" %} {% include "email/partials/_stat_tile.html" with tile_label="CURRENT STREAK" tile_value=current_streak tile_suffix=" days" tile_variant="warning" %}
{% endif %} {% include "email/partials/_cta.html" with cta_url=profile_url cta_label="Open Dashboard" %} {% include "email/partials/_settings_prefs_note.html" %} {% endblock %}