{% extends "base.html" %} {% block title %}Simulation Center{% endblock %} {% block page_title %}Simulation Center{% endblock %} {% block content %}
Available Simulations
{% for st in sim_types %} {% endfor %}
Recent Simulations
{% if simulations %} {% for sim in simulations %} {% endfor %}
NameTypeRevenue ImpactProfit ImpactRiskStatusActions
{{ 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
{% else %}

No simulations yet. Select a simulation type above to get started.

{% endif %}
{% endblock %}