{% extends "allianceauth/base-bs5.html" %} {% load humanize %} {% block content %}

CapTrack Dashboard

Blacklisted Regions

{% if blacklisted_regions %}
{% for region in blacklisted_regions %}
{{ region.name }}
{% endfor %}
{% else %}

No blacklisted regions configured.

{% endif %}

Capitals in Blacklisted Regions

{% for group in groups %} {% if group.main %}
{% if group.audit_url %} Audit {% endif %} {% if group.watchlist_ids_str %}
{% csrf_token %} Snooze all:
{% endif %}
{% if group.alts %} {% for alt in group.alts %} {% endfor %}
Character Ship Alert System Structure / Station Last Seen Status Actions
{{ alt.character_name }} {{ alt.ship_type }} {{ alt.alert_level|default:"unknown" }} {{ alt.system }} {{ alt.structure|default:"(Unknown)" }} {{ alt.last_seen|naturaltime|default:"—" }} {% if alt.is_snoozed %} Snoozed {% elif not alt.should_alert %} Tracked {% else %} Alerting {% endif %} {% if alt.watchlist_id %}
{% csrf_token %}
{% endif %}
{% else %}

No alt characters found.

{% endif %}
{% endif %} {% endfor %}
{% endblock %} {% block scripts %} {{ block.super }} {% endblock %}