{% extends "incursions/base-bs5.html" %} {% load i18n %} {% load humanize %} {% load static %} {% block page_title %} {% translate "Incursion Data" %} {% endblock page_title %} {% block header_nav_brand %} {% translate "Incursion Data" %} {% endblock header_nav_brand %} {% block content %}
{% for incursion in incursions %}
{{ incursion.constellation__name }}

Influence:
{% if incursion.state == "established" %} State: Established {% elif incursion.state == "mobilizing" %} State: Mobilized {% elif incursion.state == "withdrawing" %} State: Withdrawing {% endif %}
Region: {{ incursion.constellation__eve_region__name }}
Staging System: {{ incursion.staging_solar_system }}
Security Status:
Started: {{ incursion.established_timestamp }}
Remaining:
Staging:
Vanguards:
Headquarters:

Details
{% endfor %}
{% endblock content %}