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

Quest Board of {{ fortress_name or "the Fortress" }}

Challenges and deeds to bring glory to the fortress

Create your own quest
{% if not no_llm_mode %}
{% endif %} {% if active_quests %}

Active Quests ({{ active_quests | length }})

{% for quest in active_quests %}
{{ quest.category.value }} {{ quest.difficulty.value }}

{{ quest.title }}

{{ quest.description | hotlink }}

{% if quest.hints %}
Hints
{% endif %} {% if quest.related_unit_names %} {% endif %}
Issued: {{ quest.game_season | title }} of Year {{ quest.game_year }}
{% if not no_llm_mode %} {% endif %}
{% endfor %} {% else %}
No active quests. {% if no_llm_mode %}Create your own quest above, or disable No-LLM Mode in Settings to generate quests with AI.{% else %}Click "Seek New Quests" above to generate challenges, or create your own.{% endif %}
{% endif %} {% if completed_quests %}
Completed Quests ({{ completed_quests | length }}) {% for quest in completed_quests %}
{{ quest.category.value }}

{{ quest.title }}

{{ quest.description | hotlink }}

{% if quest.completion_narrative %}
{{ quest.completion_narrative | hotlink }}
{% endif %}
Completed: {{ quest.completed_at.strftime('%Y-%m-%d') if quest.completed_at else 'Unknown' }}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}