{% extends "dashboard/base.html" %} {% block title %}Dashboard - Command Center{% endblock %} {% block content %} {% if company %}
Annual Target
${% if company.target_revenue %}{{ "{:,.0f}".format(company.target_revenue) }}{% else %}—{% endif %}
{% if run_rate.ytd_revenue %}
${% if run_rate.ytd_revenue %}{{ "{:,.0f}".format(run_rate.ytd_revenue) }}{% endif %} YTD
{% endif %}
Run Rate
${% if run_rate.run_rate %}{{ "{:,.0f}".format(run_rate.run_rate) }}{% else %}—{% endif %}
{% if run_rate.pace == 'on_track' %}✓ On track{% else %}⚠ Behind{% endif %}
Active Projects
{{ active_projects or '0' }}
View all →
Active Goals
{{ active_goals|length or '0' }}
View all →

Revenue Forecast

Projected vs actual by month

View Full →
{% if recent_forecasts %} {% for f in recent_forecasts %} {% endfor %}
Period Projected Actual Variance
{{ f.period_start.strftime('%b %Y') }} ${% if f.projected_value %}{{ "{:,.0f}".format(f.projected_value) }}{% else %}—{% endif %} ${% if f.actual_value %}{{ "{:,.0f}".format(f.actual_value) }}{% else %}—{% endif %} {% if f.variance_pct %} {{ '%+.1f%%'|format(f.variance_pct) }} {% else %} — {% endif %}
{% else %}

No forecast data yet

Add Forecasts
{% endif %}

Active Goals

{{ active_goals|length }} goals in progress

View →
{% if active_goals %} {% for goal in active_goals %}
{{ goal.name }} {{ goal.category }}
Target: {{ goal.end_date.strftime('%b %d') if goal.end_date else '—' }}
{% endfor %} {% else %}

No active goals

Set Goals
{% endif %}

Coaching

Recent sessions

View →
{% if recent_sessions %} {% for session in recent_sessions %}
{{ session.title }}
{{ session.start_date.strftime('%b %d, %Y') }} · {% if session.duration_minutes %}{{ session.duration_minutes }} min{% else %}60 min{% endif %}
{% endfor %} {% else %}

No recent sessions

{% endif %}
{% else %}

Welcome to Command Center

Get started by adding your first company

Add Your Company
{% endif %} {% endblock %}