{% extends "industry_reforged/base.html" %} {% load i18n django_bootstrap5 %} {% block details %}

{{ title }}

{% csrf_token %} {% if corp_structures %}
{% trans "Only structures capable of manufacturing or reactions are shown." %}
{% endif %} {% bootstrap_form form %}
{% if facility and facility.security_space == 'HIGHSEC' %} Highsec (1.0) {% elif facility and facility.security_space == 'LOWSEC' %} Lowsec (1.9) {% elif facility and facility.security_space == 'NULLSEC_WH' %} Nullsec/W-Space (2.1) {% else %} {% trans "Unknown (Determined automatically)" %} {% endif %}

{% trans "Installed Rigs" %}

{{ formset.management_form }} {% for rig_form in formset %}
{{ rig_form.id }} {% bootstrap_field rig_form.rig layout="horizontal" %}
{% if formset.can_delete %} {% bootstrap_field rig_form.DELETE %} {% endif %}
{% endfor %}
{% trans "Cancel" %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}