{% extends 'base.html' %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons object %} {% if perms.virtualization.change_vminterface %} Edit {% endif %} {% if perms.virtualization.delete_vminterface %} Delete {% endif %}

{% block title %}{{ object.virtual_machine }} / {{ object.name }}{% endblock %}

{% endblock %} {% block content %}
Interface
Virtual Machine {{ object.virtual_machine }}
Name {{ object.name }}
Enabled {% if object.enabled %} {% else %} {% endif %}
Description {{ object.description|placeholder }}
MTU {{ object.mtu|placeholder }}
MAC Address {{ object.mac_address|placeholder }}
802.1Q Mode {{ object.get_mode_display }}
{% plugin_left_page object %}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all %} {% plugin_right_page object %}
{% include 'panel_table.html' with table=ipaddress_table heading="IP Addresses" %}
{% include 'panel_table.html' with table=vlan_table heading="VLANs" %}
{% plugin_full_width_page object %}
{% endblock %}