{% extends "base.html" %} {% block title %}{{ ec.name or ec.type }} — df-storyteller{% endblock %} {% block content %}
← Back to Legends
{{ ec.name or ec.type }}
{{ ec.type }} {% if ec.adjective %} · {{ ec.adjective }}{% endif %} · Year {{ ec.start_year }}{% if ec.end_year and ec.end_year != ec.start_year %} – {{ ec.end_year }}{% endif %}
{% if ec.site_name %}

Location

{{ lore_link("site", ec.site_id, ec.site_name) | safe }}

{% endif %} {% if ec.attacker_name %}

Aggressor

{{ lore_link("civilization", ec.attacker_id, ec.attacker_name) | safe }}

{% endif %} {% if ec.target_name %}

Target

{{ lore_link("civilization", ec.target_id, ec.target_name) | safe }}

{% endif %} {% if ec.attacking_hf_name %}

Attacker

{{ lore_link("figure", ec.attacking_hf_id, ec.attacking_hf_name) | safe }}

{% endif %} {% if ec.defending_hf_name %}

Defender

{{ lore_link("figure", ec.defending_hf_id, ec.defending_hf_name) | safe }}

{% endif %} {% if ec.defender_name %}

Defender

{{ lore_link("civilization", ec.defender_id, ec.defender_name) | safe }}

{% endif %} {% if ec.parent_war %}

Part of

{{ lore_link("war", ec.parent_war_id, ec.parent_war) | safe }}

{% endif %}

Summary

{{ events | length }} recorded event{{ 's' if events | length != 1 else '' }}

{% if events %}

Events

{% for evt in events %} {% endfor %}
Year Event
{{ evt.year }} {{ evt.description | hotlink | safe }}
{% endif %}
{% endblock %}