{% 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 "Token counts and the quickest actions to fix missing scopes." %}
{% trans "Authorize blueprints, industry, and assets scopes in one step for your characters." %}
{% trans "Indy Hub will request every scope required by the module." %}
{% trans "Authorize director scopes (blueprints, jobs, assets, wallets, structures) at once." %}
{% trans "Covers Material Exchange and industry features." %}
{% trans "Coverage per character." %}
| {% trans "Character" %} | {% trans "Status" %} | {% trans "Blueprints" %} | {% trans "Industry" %} | {% trans "Assets" %} | |
|---|---|---|---|---|---|
|
|
{{ char.name }} |
{% if char.has_all_scopes %}
{% trans "All active" %}
{% trans "Blueprints, industry, assets" %}
{% else %}
{% trans "Missing scopes" %}
{% blocktrans with missing=char.missing_scopes|join:", " %}Missing: {{ missing }}{% endblocktrans %}
{% endif %}
|
{% if char.bp_enabled %} {% trans "OK" %} {% else %} {% trans "Missing" %} {% endif %} | {% if char.jobs_enabled %} {% trans "OK" %} {% else %} {% trans "Missing" %} {% endif %} | {% if char.assets_enabled %} {% trans "OK" %} {% else %} {% trans "Missing" %} {% endif %} |
| {% trans "No characters found." %} | |||||
{% trans "Coverage for director tokens." %}
| {% trans "Corporation" %} | {% trans "Status" %} | {% trans "Blueprints" %} | {% trans "Industry" %} | {% trans "Assets" %} |
|---|---|---|---|---|
|
{{ corp.corporation_name }}
|
{% if 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 %}
|
{% if corp.blueprint.has_scope %}
{% trans "OK" %}
{% if corp.blueprint.character_name %}
{{ corp.blueprint.character_name }}
{% endif %}
{% else %}
{% trans "Missing" %}
{% endif %}
|
{% if corp.jobs.has_scope %}
{% trans "OK" %}
{% if corp.jobs.character_name %}
{{ corp.jobs.character_name }}
{% endif %}
{% else %}
{% trans "Missing" %}
{% endif %}
|
{% if corp.assets.has_scope %}
{% trans "OK" %}
{% if corp.assets.character_name %}
{{ corp.assets.character_name }}
{% endif %}
{% else %}
{% trans "Missing" %}
{% endif %}
|
| {% trans "No corporation access detected." %} | ||||