{% extends "dashboard/base.html" %} {% block title %}Revenue Forecast - Command Center{% endblock %} {% block content %}
Projected vs actual revenue and pipeline analysis
Projected vs actual revenue by month
| Period | Projected | Actual | Variance | Confidence |
|---|---|---|---|---|
| {{ f.period_start.strftime('%b %Y') }} | {{ "{:,.0f}".format(f.projected_value) if f.projected_value else "—" }} | {{ "{:,.0f}".format(f.actual_value) if f.actual_value else "—" }} | {% if f.variance_pct %} {{ '%+.1f%%'|format(f.variance_pct) }} {% else %} — {% endif %} | {% if f.confidence %} {{ '%.0f%%'|format(f.confidence * 100) }} {% else %} — {% endif %} |
No forecast data available
Start by adding monthly revenue projections