{% 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" %}

Per-Exercise Progress

{% endif %} {% endblock %}