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

The Chronicle of {{ fortress_name or "the Fortress" }}

A record of events, as told by the keepers of memory

{% if current_season and current_year %}

Writing for: {{ current_season | title }} of Year {{ current_year }} {% if already_written %}
An entry exists for this season — generating will replace it. {% endif %}

{% endif %} {% if fortress_notes %}

Fortress Notes

{% for note in fortress_notes %}
{{ note.tag.value }} {{ note.text }} {{ note.game_season | title }} Y{{ note.game_year }}
{% endfor %}
{% endif %}
{% if not no_llm_mode %}
Add context for this entry (optional)
{% endif %}
{% if no_llm_mode %}Write your chronicle entry{% else %}Write your own entry{% endif %}
{% if entries %} {% for entry in entries %}
{% if entry.header %}

{{ entry.header }} {% if entry.is_manual %}Player{% endif %}

{% endif %}
{{ entry.text | inline_images | hotlink | safe }}
{% if entry.images %}
{% for img_id in entry.images %} Screenshot {% endfor %}
{% endif %}
{% if not loop.last %}
{% endif %} {% endfor %} {% else %}

No chronicle entries yet. Take a snapshot in DFHack (storyteller-begin), then {% if no_llm_mode %}write your first entry below{% else %}click "Write New Entry" to begin{% endif %}.

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