{% extends "dashboard/base.html" %} {% block title %}Optimization - Command Center{% endblock %} {% block content %}

Recommendations

AI-powered optimization opportunities

{% if optimizations %} {% for opt in optimizations %} {% endfor %}
Recommendation Category Impact Priority Status
{{ opt.recommendation }} {{ opt.category }} {{ "{:,.0f}".format(opt.estimated_impact) if opt.estimated_impact else "—" }} {{ opt.priority }} {{ opt.status }}
{% else %}

No optimization recommendations yet

Recommendations appear as we analyze your revenue data

{% endif %}

Implemented Results

Track impact of implemented optimizations

{% if results %} {% for result in results %} {% endfor %}
Optimization Date Impact
{{ result.optimization_name }} {{ result.implemented_at.strftime('%b %d, %Y') }} {{ "{:,.0f}".format(result.measured_impact) if result.measured_impact else "—" }}
{% else %}

No implemented optimizations yet

{% endif %}
{% endblock %}