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

Citizens of {{ fortress_name or "the Fortress" }}

{{ dwarves | length }} souls call this place home

Relationship Web Pantheon
{% if dwarves %}
{% for dwarf in dwarves %}
{{ dwarf.name }}
{{ dwarf.profession }}{% if dwarf.noble_positions %} — {{ dwarf.noble_positions | join(', ') }}{% endif %} · Age {{ dwarf.age | int }}
{% if dwarf.notable_traits %}
{{ dwarf.notable_traits }}
{% endif %}
{% endfor %}
{% else %}

No dwarves found. Run storyteller-begin in DFHack to take a snapshot.

{% endif %} {% endblock %}