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

{% trans "Description" %}:

{% trans "From here you can define the configuration of a new interface." %}


{% trans "Ports & LLDP Neighbors" %}

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

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