{% extends 'aapayout/base.html' %} {% load i18n %} {% block details %}

{% translate "Import Fleet from ESI" %}

{% translate "Back to Fleet" %}
{% translate "How to Import Your Fleet" %}
  1. {% translate "Be in the fleet" %}: {% translate "You must be in the EVE Online fleet you want to import." %}
  2. {% translate "Authorize ESI access" %}: {% translate "If you haven't already, you'll need to add your character with the required ESI scopes." %}
  3. {% translate "Click Import" %}: {% translate "The system will automatically detect which fleet you're in and import all members." %}
{% translate "Important" %}: {% translate "Make sure you're logged into EVE Online and in the fleet before clicking Import." %}
{% translate "Fleet Import" %}
{% csrf_token %}

{% translate "This will automatically import all members from the fleet you're currently in." %}


{% translate "Need ESI Access?" %}

{% translate "If you haven't added your character with ESI fleet access yet, you'll need to:" %}

  1. {% translate "Go to your profile and add/update your character" %}
  2. {% translate "Make sure to authorize the 'esi-fleets.read_fleet.v1' scope" %}
{% translate "Add/Update Character" %}
{% if recent_imports %}
{% translate "Recent Imports" %}
{% for import_record in recent_imports %} {% endfor %}
{% translate "Date" %} {% translate "ESI Fleet ID" %} {% translate "Characters Found" %} {% translate "Added" %} {% translate "Unique Players" %}
{{ import_record.imported_at|date:"Y-m-d H:i" }} {{ import_record.esi_fleet_id }} {{ import_record.characters_found }} {{ import_record.characters_added }} {{ import_record.unique_players }} {% translate "View Details" %}
{% endif %}
{% endblock %}