{% extends "indy_hub/base.html" %} {% load i18n %} {% load static %} {% block page_title %}{% if is_personal_copy_edit_mode %}{% trans "Edit Personal Structure" %}{% else %}{% trans "Duplicate Structure" %}{% endif %}{% endblock page_title %} {% block extra_css %} {% endblock extra_css %} {% block content %}
{% if is_personal_copy_edit_mode %} {% include "indy_hub/partials/page_header.html" with icon_class="fas fa-clone" title=_("Edit Personal Structure") subtitle=_("Update your private structure copy. The structure identity stays locked; only the personal tag and taxes can be changed here.") back_url=structure_registry_url back_label=_("Back to Registry") %} {% else %} {% include "indy_hub/partials/page_header.html" with icon_class="fas fa-clone" title=_("Duplicate Structure") subtitle=_("Create a private structure copy from an existing entry. The structure identity stays locked; only the personal tag and taxes can be changed here.") back_url=structure_registry_url back_label=_("Back to Registry") %} {% endif %}
{% if is_personal_copy_edit_mode %} {% trans "This is your private structure copy. Hull, system, activities and rigs are locked here; only your personal tag and taxes can be changed." %} {% else %} {% trans "A new private structure copy will be created from this shared structure. Hull, system, activities and rigs are copied as-is; only your personal tag and taxes can be changed here." %} {% endif %}
{% trans "Structure" %}: {{ source_structure.name }}
{% trans "Type" %}: {{ source_structure.structure_type_name|default:"-" }}
{% trans "System" %}: {{ source_structure.solar_system_name|default:"-" }}
{% trans "Security Band" %}: {{ source_structure.get_system_security_band_display }}
{% trans "Enabled Activities" %}: {% for activity_label, is_enabled in source_structure.get_enabled_activity_rows %}{% if is_enabled %}{{ activity_label }}{% endif %}{% endfor %}
{% csrf_token %}
{{ tax_form.personal_tag }}
{% trans "The structure name is locked. Use this personal tag to distinguish your own private tax profile." %}
{% for error in tax_form.personal_tag.errors %}
{{ error }}
{% endfor %}
{{ tax_form.manufacturing_tax_percent }} {% for error in tax_form.manufacturing_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.manufacturing_capitals_tax_percent }} {% for error in tax_form.manufacturing_capitals_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.manufacturing_super_capitals_tax_percent }} {% for error in tax_form.manufacturing_super_capitals_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.research_tax_percent }} {% for error in tax_form.research_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.invention_tax_percent }} {% for error in tax_form.invention_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.biochemical_reactions_tax_percent }} {% for error in tax_form.biochemical_reactions_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.hybrid_reactions_tax_percent }} {% for error in tax_form.hybrid_reactions_tax_percent.errors %}
{{ error }}
{% endfor %}
{{ tax_form.composite_reactions_tax_percent }} {% for error in tax_form.composite_reactions_tax_percent.errors %}
{{ error }}
{% endfor %}
{% trans "Cancel" %}

{% trans "Copied As-Is" %}

{% trans "Structure definition" %}
{% trans "Structure name, structure type, solar system, security band, enabled activities and rigs are preserved from the source entry." %}
{% trans "Installed Rigs" %}
{% if source_structure.rigs.all %}
    {% for rig in source_structure.rigs.all %}
  • {% blocktranslate with slot=rig.slot_index rig_name=rig.rig_type_name %}Slot {{ slot }}: {{ rig_name }}{% endblocktranslate %}
  • {% empty %}
  • {% trans "No rigs recorded for this structure." %}
  • {% endfor %}
{% endif %}
{% endblock content %}