{% extends "hangarready/base.html" %} {% load static %} {% block page_subtitle %} - Ship Report Generator {% endblock %} {% block hangar_content %}
Back to Dashboard

Ship Availability Report

Select ship classes and/or individual ship types, and optionally a location to see which characters have those ships available.

{% csrf_token %}
Select entire ship classes like "Battleship" or "Frigate"
Select specific ship types
Structures showing as "Structure [ID]" can be refreshed using the button in the report results
{% if report_data %}

Report Results

Report Details
{% if report_data.selected_groups %}

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 }}

{% if report_data.characters %}
{% for character in report_data.characters %} {% endfor %}
Character Corporation Ships Available
{{ character.character_name }} {{ character.character_name }} {{ character.corporation_name }} {% for ship_name, count in character.ships.items %} {{ ship_name }} ({{ count }}x) {% endfor %}
{% else %}
No characters found with the selected ships at the specified location.
{% endif %}
{% endif %} {% endblock %} {% block extra_script %} {% endblock %}