{% extends "base.html" %} {% block title %}Training Plan{% endblock %} {% block content %}

Training Plan

Your overall training plan, broken into phases. The AI coach creates and manages these phases based on your goals and progress.

{% for phase in phases %}

{{ phase.name }}

{% if loop.first %}

Current phase

{% endif %} {% if phase.start_date or phase.end_date %}

{% if phase.start_date %}{{ phase.start_date }}{% endif %} {% if phase.start_date and phase.end_date %} — {% endif %} {% if phase.end_date %}{{ phase.end_date }}{% endif %}

{% endif %}

{{ phase.description }}

{% if phase.notes %}

{{ phase.notes }}

{% endif %} {% else %}

No phases yet

Ask the AI Coach to set up a training plan with phases.

{% endfor %} {% endblock %}