{% extends "base.html" %} {% block title %}Simulation Center{% endblock %} {% block page_title %}Simulation Center{% endblock %} {% block content %}
| Name | Type | Revenue Impact | Profit Impact | Risk | Status | Actions |
|---|---|---|---|---|---|---|
| {{ sim.name }} | {{ sim_labels.get(sim.sim_type, sim.sim_type) }} | {% if sim.revenue_after is not none and sim.revenue_before is not none %} {% if sim.revenue_after > sim.revenue_before %}+{% endif %}{{ currency_symbol }}{{ "{:,.0f}".format(sim.revenue_after - sim.revenue_before) }} {% else %}-{% endif %} | {% if sim.profit_after is not none and sim.profit_before is not none %} {% if sim.profit_after > sim.profit_before %}+{% endif %}{{ currency_symbol }}{{ "{:,.0f}".format(sim.profit_after - sim.profit_before) }} {% else %}-{% endif %} | {{ "%.0f"|format(sim.risk_score or 0) }} | {{ sim.status|title }} | Rerun |
No simulations yet. Select a simulation type above to get started.
{% endif %}