{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% trans "ESI" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% trans "Coverage per character." %}
| {% trans "Character" %} | {% trans "Status" %} | |
|---|---|---|
|
|
{{ char.name }} |
{% if char.has_all_scopes %}
{% trans "All active" %}
{% else %}
{% trans "Missing scopes" %}
{% blocktrans with missing=char.missing_scopes|join:", " %}Missing: {{ missing }}{% endblocktrans %}
{% endif %}
|
| {% trans "No characters found." %} | ||
{% trans "Coverage for director tokens." %}
| {% trans "Corporation" %} | {% trans "Status" %} |
|---|---|
|
{{ corp.corporation_name }}
|
{% if corp.roles_unavailable %}
{% trans "Roles unavailable" %}
{% trans "ESI roles check failed; scopes unverified." %}
{% elif corp.has_all_scopes %}
{% trans "All active" %}
{% trans "Director token ready" %}
{% else %}
{% trans "Missing scopes" %}
{% blocktrans with missing=corp.missing_scopes|join:", " %}Missing: {{ missing }}{% endblocktrans %}
{% endif %}
|
| {% trans "No corporation access detected." %} | |