{% 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 %}
Add context for this entry (optional)
{% if entries %} {% for entry in entries %}
{% if entry.header %}

{{ entry.header }}

{% endif %}
{{ entry.text | safe }}
{% if not loop.last %}
{% endif %} {% endfor %} {% else %}

No chronicle entries yet. Take a snapshot in DFHack (storyteller-begin), then click "Write New Entry" to begin.

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