{% extends "dashboard/base.html" %} {% block title %}Coaching - Command Center{% endblock %} {% block content %} {% if sessions %}
{% for session in sessions %}

{{ session.focus_area or 'Coaching Session' }}

{{ session.status }}
{% if session.description %}

{{ session.description }}

{% endif %}
Date
{{ session.start_date.strftime('%b %d, %Y') if session.start_date else '—' }}
End Date
{{ session.end_date.strftime('%b %d, %Y') if session.end_date else '—' }}
{% endfor %}
{% if scorecards %}

Scorecards

{% for sc in scorecards %}

{{ sc.coach_name or 'Evaluation' }}

{{ sc.evaluation_date.strftime('%b %d') if sc.evaluation_date }}
{% if sc.overall_score %}
Score: {{ sc.overall_score }}/10
{% endif %} {% if sc.comments %}

{{ sc.comments }}

{% endif %}
{% endfor %}
{% endif %} {% else %}

No Sessions Yet

Schedule your first coaching session

{% endif %} {% endblock %}