{% extends "base.html" %} {% block title %}{{ scenario.name }} · Scenario · CalMiner{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Scenario Details

Description
{{ scenario.description or 'No description provided.' }}
Timeline
{% if scenario.start_date %} {{ scenario.start_date }} {% else %} — {% endif %} → {% if scenario.end_date %} {{ scenario.end_date }} {% else %} — {% endif %}
Discount Rate
{{ scenario.discount_rate or '—' }}
Currency
{{ scenario.currency or '—' }}
Primary Resource
{{ scenario.primary_resource.value.replace('_', ' ') | title if scenario.primary_resource else '—' }}

Financial Inputs

{% if financial_inputs %}
{% for item in financial_inputs %} {% endfor %}
Name Category Amount Currency
{{ item.name }} {{ item.category.value.title() }} {{ '{:,.2f}'.format(item.amount) }} {{ item.currency or '—' }}
{% else %}

No financial inputs recorded.

{% endif %}

Simulation Parameters

{% if simulation_parameters %}
{% for param in simulation_parameters %} {% endfor %}
Name Distribution Variable Resource
{{ param.name }} {{ param.distribution.value.title() }} {{ param.variable.value.replace('_', ' ') | title if param.variable else '—' }} {{ param.resource_type.value.replace('_', ' ') | title if param.resource_type else '—' }}
{% else %}

No simulation parameters defined.

{% endif %}
{% endblock %}