{% 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 }}{% if dwarf.highlight_role %} {{ dwarf.highlight_role }}{% endif %}
{{ 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 %} {% if visitors %}

{{ visitors | length }} traveler{{ 's' if visitors | length != 1 else '' }} currently at the fortress

{% for v in visitors %}
{{ v.name }}
{{ v.profession }}{% if v.race %} · {{ v.race }}{% endif %} · Age {{ v.age | int }}
{% if v.hfid %}
Details View in Legends
{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}