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

Total Scenarios

{{ scenario_stats.total }}

Across this project

Active

{{ scenario_stats.active }}

Currently live analyses

Draft

{{ scenario_stats.draft }}

Awaiting validation

Archived

{{ scenario_stats.archived }}

Historical references

Project Overview

Location
{{ project.location or '—' }}
Description
{{ project.description or 'No description provided.' }}
Created
{{ project.created_at.strftime('%Y-%m-%d %H:%M') }}
Updated
{{ project.updated_at.strftime('%Y-%m-%d %H:%M') }}
Latest Scenario Update
{{ scenario_stats.latest_update.strftime('%Y-%m-%d %H:%M') if scenario_stats.latest_update else '—' }}

Scenarios

Add Scenario
{% if scenarios %}
{% for scenario in scenarios %} {% endfor %}
Name Status Currency Primary Resource Actions
{{ scenario.name }} {{ scenario.status.value.title() }} {{ scenario.currency or '—' }} {{ scenario.primary_resource.value.replace('_', ' ') | title if scenario.primary_resource else '—' }} View Edit
{% else %}

No scenarios yet. Create the first scenario.

{% endif %}
{% endblock %}