{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% load render_table from django_tables2 %} {% block breadcrumbs %} {{ block.super }} {% endblock %} {% block content %}
Interface
Virtual Machine {{ object.virtual_machine }}
Name {{ object.name }}
Enabled {% if object.enabled %} {% else %} {% endif %}
Parent {% if object.parent %} {{ object.parent }} {% else %} None {% endif %}
Bridge {% if object.bridge %} {{ object.bridge }} {% else %} None {% endif %}
Description {{ object.description|placeholder }}
MTU {{ object.mtu|placeholder }}
MAC Address {{ object.mac_address|placeholder }}
802.1Q Mode {{ object.get_mode_display|placeholder }}
{% include 'inc/panels/tags.html' %} {% plugin_left_page object %}
{% include 'inc/panels/custom_fields.html' %} {% include 'ipam/inc/panels/fhrp_groups.html' %} {% plugin_right_page object %}
IP Addresses
{% if ipaddress_table.rows %} {% render_table ipaddress_table 'inc/table.html' %} {% else %}
None
{% endif %}
{% if perms.ipam.add_ipaddress %} {% endif %}
{% include 'inc/panel_table.html' with table=vlan_table heading="VLANs" %}
{% include 'inc/panel_table.html' with table=child_interfaces_table heading="Child Interfaces" %}
{% plugin_full_width_page object %}
{% endblock %}