{% extends "allianceauth/base-bs5.html" %} {% load static %} {% block page_title %}ESI ACLs{% endblock %} {% block content %}
{% include "aa_altcorp/_page_header.html" with title="ESI access lists" subtitle="Review synchronized ACL data and choose which lists should be monitored." active_tab="acls" %} {% for acl in access_lists %}

{{ acl.name|default:"Unnamed access list" }}

Character {{ acl.character_id }} ยท ACL {{ acl.access_list_id }}
{% if acl.access_list_id in monitored_access_lists %}Monitored{% else %}Ignored{% endif %}Synced {{ acl.synced_at }}
{% csrf_token %}
{% if acl.access_list_id in monitored_access_lists %}
{% csrf_token %}
{% for entity_id in acl.monitor_policy.expect_corporations %}{{ entity_id }} {% endfor %}
{% for entity_id in acl.monitor_policy.expect_alliances %}{{ entity_id }} {% endfor %}
{% for item in acl.monitor_policy.expect_entities %}{{ item.entity_id }} {% endfor %}
{% endif %} {% if acl.description %}

{{ acl.description }}

{% endif %}
Everyone
{% if acl.membership.allow_everyone %}Allowed{% else %}Not allowed{% endif %}
Alliances{% for item in acl.membership.alliances %}
{{ item.name|default:item.alliance_id }} {{ item.access }}
{% empty %}
None
{% endfor %}
Corporations{% for item in acl.membership.corporations %}
{{ item.name|default:item.corporation_id }} {{ item.access }}
{% empty %}
None
{% endfor %}
Characters{% for item in acl.membership.characters %}
{{ item.name|default:item.character_id }} {{ item.access }}
{% empty %}
None
{% endfor %}
{% empty %}
No ACL data has been synchronized yet. Run the scheduled audit after associating a character.
{% endfor %}
{% endblock %} {% block extra_javascript %}{% endblock %}