{% extends "horizon/common/_modal_form.html" %} {% load i18n %} {% block form_id %}edit_interface_form{% endblock %} {% block form_action %}{% url 'horizon:admin:inventory:editinterface' host_id interface_id %}{% endblock %} {% block modal-header %}{% trans "Edit Interface" %}{% endblock %} {% block modal-body %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description" %}:

{% trans "From here you can update the configuration of the current interface." %}


{% if ports %}

{% trans "Port & LLDP Neighbors" %}

{% for p in ports %} {% if p.1 %} {% else %} {% endif %} {% endfor %}
{{p.0}}
    {% for n in p.1 %}
  1. {{n}}
  2. {% endfor %}

{% endif %}
{% endblock %} {% block modal-footer %} Cancel {% endblock %}