{% 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 %}
| {% 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" %}
{% else %}
{% trans "Complete" %}
{% endif %}
{% for section in row.missing_profile_sections %}
{{ section }}
{% endfor %}
|
|