{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% trans "Structure Registry" %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% include "indy_hub/partials/page_header.html" with icon_class="fas fa-sitemap" title=_("Structure Registry") subtitle=_("Browse the structures already saved in Indy Hub and inspect their resolved hull and rig bonuses.") back_url=back_to_industry_url back_label=_("Back to Jobs") %}
{% if has_active_filters %} {% trans "Reset" %} {% endif %} {% trans "Add Structure" %}
{{ filtered_structure_count }} {% trans "shown" %} {% if has_active_filters %} {{ total_structure_count }} {% trans "overall" %} {% endif %} {{ synced_structure_count }} {% trans "synced" %} {{ incomplete_structure_count }} {% trans "need setup" %} {% if can_manage_structure_sync and auto_sync_corporations_count %} {{ auto_sync_corporations_count }} {% trans "auto-sync corporation(s)" %} {% endif %}

{% if has_active_filters %} {% trans "Clear All" %} {% endif %}
{% if has_active_filters %}
{% trans "Active Filters" %}
{% for badge in active_filter_badges %} {{ badge.label }}: {{ badge.value }} {% endfor %}
{% endif %}

{% trans "Registered Structures" %}

{{ filtered_structure_count }}
{% if structure_rows %}
{% for row in structure_rows %} {% endfor %}
{% trans "Structure" %} {% trans "Enabled Activities" %} {% trans "Status" %} {% trans "Actions" %}
{{ row.display_name }}
{{ row.structure.structure_type_name|default:"-" }} / {{ row.structure.solar_system_name|default:"-" }} / {% trans "System Type" %}: {{ row.structure.get_system_security_band_display }}
{% if row.structure.constellation_name or row.structure.region_name %}
{% if row.structure.constellation_name %} {% trans "Constellation" %}: {{ row.structure.constellation_name }} {% endif %} {% if row.structure.constellation_name and row.structure.region_name %} / {% endif %} {% if row.structure.region_name %} {% trans "Region" %}: {{ row.structure.region_name }} {% endif %}
{% endif %}
{% if row.structure.is_personal_copy %} {% trans "Personal Copy" %} {{ row.structure.owner_user.username }} {% endif %} {% if row.structure.is_synced_structure %} {% trans "Auto Sync" %} {% else %} {% trans "Manual" %} {% endif %} {% if row.structure.owner_corporation_name %} {{ row.structure.owner_corporation_name }} {% endif %}
{% for activity_label, is_enabled in row.structure.get_enabled_activity_rows %} {% if is_enabled %}{{ activity_label }}{% endif %} {% endfor %}
{% if row.is_profile_incomplete %}
{% trans "Setup needed" %}
{% for section in row.missing_profile_sections %} {{ section }} {% endfor %}
{% else %} {% trans "Complete" %} {% endif %}
{% for row in structure_rows %} {% endfor %} {% else %}
{% if has_active_filters %}
{% trans "No structure matches the current filters." %}
{% trans "Clear Filters" %} {% else %}
{% trans "No structure has been registered yet." %}
{% trans "Add the first structure" %} {% endif %}
{% endif %}
{% endblock content %} {% block extra_javascript %} {{ block.super }} {% if bulk_tax_form.errors or bulk_tax_confirmation %} {% endif %} {% if bulk_import_form.errors %} {% endif %} {% endblock extra_javascript %}