{% 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 "Get the Fleet ID" %}: {% translate "Open your fleet window in EVE. The fleet ID is usually shown in the fleet MOTD or can be found by right-clicking the fleet boss and selecting 'Show Fleet Details'." %}
  3. {% translate "Authorize ESI access" %}: {% translate "If you haven't already, you'll need to add your character with the required ESI scopes." %}
  4. {% translate "Paste Fleet ID below" %}: {% translate "Enter the ESI fleet ID and click Import." %}
{% translate "Fleet Import" %}
{% csrf_token %}
{% translate "Enter the numeric fleet ID from EVE Online" %}
{% 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 %}