{% extends "hangarready/base.html" %} {% load static %} {% block page_subtitle %} - Ship Report Generator {% endblock %} {% block hangar_content %}
Select ship classes and/or individual ship types, and optionally a location to see which characters have those ships available.
Ship Classes: {% for group in report_data.selected_groups %} {{ group.name }} {% endfor %}
{% endif %} {% if report_data.selected_ships %}Individual Ships: {% for ship in report_data.selected_ships %} {{ ship.type_name }} {% endfor %}
{% endif %}Location: {{ report_data.location_name }} {% if report_data.location_name and "Structure " in report_data.location_name %} {% endif %}
Total Characters with Ships: {{ report_data.total_characters }}
| Character | Corporation | Ships Available |
|---|---|---|
|
|
{{ character.corporation_name }} | {% for ship_name, count in character.ships.items %} {{ ship_name }} ({{ count }}x) {% endfor %} |