{% extends "base.html" %} {% block title %}Dashboard ยท CalMiner{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Total Projects

{{ metrics.total_projects }}

Across all operation types

Active Scenarios

{{ metrics.active_scenarios }}

Ready for analysis

Pending Simulations

{{ metrics.pending_simulations }}

Awaiting execution

Last Data Import

{{ metrics.last_import or 'โ€”' }}

UTC timestamp

Recent Projects

View all
{% if recent_projects %} {% for project in recent_projects %} {% endfor %}
Project Operation Updated
{{ project.name }} {{ project.operation_type.value.replace('_', ' ') | title }} {{ project.updated_at.strftime('%Y-%m-%d') if project.updated_at else 'โ€”' }}
{% else %}

No recent projects. Create one now.

{% endif %}

Simulation Pipeline

{% if simulation_updates %}
    {% for update in simulation_updates %}
  • {{ update.timestamp_label or 'โ€”' }}
    {{ update.title }}

    {{ update.description }}

  • {% endfor %}
{% else %}

No simulation runs yet. Configure a scenario to start simulations.

{% endif %}
{% endblock %}