{% extends "base.html" %} {% block title %}Dashboard — df-storyteller{% endblock %} {% block content %}

Fortress Dashboard

{{ fortress_name or "The Fortress" }} — a chronicle in numbers

{% if dashboard.summary.years_active > 0 %}
{{ dashboard.summary.population }}
Population
{{ dashboard.summary.years_active }}
Years Active
{{ dashboard.summary.total_deaths }}
Deaths
{{ dashboard.summary.total_artifacts }}
Artifacts
{{ dashboard.summary.total_combats }}
Combats
{% if dashboard.population_series %}

Population Over Time

{% endif %} {% if dashboard.deaths_series %}

Deaths Per Season

{% endif %} {% if dashboard.combat_series %}

Combat Activity

{% endif %} {% if dashboard.migration_series %}

Migration Waves

{% endif %}
{% if dashboard.milestones %}

Notable Firsts

{% for m in dashboard.milestones %}
{{ m.season }} of Year {{ m.year }}
{{ m.label }}
{{ m.description }}
{% endfor %}
{% endif %} {% else %}

No fortress data yet. Take a snapshot in DFHack (storyteller-begin) and play through a few seasons to see trends.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}