{% extends "base.html" %} {% block title %}Dashboard -- SneakySwole{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Progress Dashboard

{% if active_profile %}

{{ active_profile.display_name }}'s training overview

{% else %}

No profile selected -- select one

{% endif %}
{% if stats %}
{% include "partials/stats_card.html" %}

Volume by Workout Day

{% include "partials/volume_chart.html" %}
{% include "partials/recent_activity.html" %} {% include "partials/progression_chart.html" %} {% include "partials/muscle_heatmap.html" %}

Per-Exercise Progress

{% include "partials/export_form.html" %} {% endif %} {% include "partials/import_form.html" %} {% endblock %}