{% extends BASE_TEMPLATE %} {% load i18n %} {% block view_content %}

{% trans "Rack Configuration" %} — {{ object }}

{% csrf_token %}
{{ config_form.as_p }}

{% trans "Switch columns" %}

{% trans "Define the switch columns for this rack (e.g. eth1, eth2, mgmt). Enter each switch by its barcode, hostname, or a rack position like rack12u42 (switch at position 42 of the rack whose name ends with 12, in this rack's data center)." %}

{{ formset.management_form }} {% if formset.non_form_errors %} {% endif %} {% for form in formset %} {{ form.id }} {% endfor %}
{% trans "Label" %} {% trans "Switch (barcode, hostname or rackNuM)" %} {% trans "Netmaker validation" %} {% trans "Delete" %}
{{ form.label }} {{ form.label.errors }} {{ form.switch_identifier }} {{ form.switch_identifier.errors }} {{ form.backend_validation }} {{ form.backend_validation.errors }} {% if form.instance.pk %}{{ form.DELETE }}{% endif %}
{% endblock %}