{% extends 'machines/machine.html' %} {% load filters %} {% block tabcontent %}
Network Interfaces
{% for network_interface in machine.networkinterfaces.all %} {% endfor %}
MAC Address Primary Name Driver Module Ethernet Type
{{ network_interface.mac_address }} {{ network_interface.primary|boolean_image:15|safe }} {{ network_interface.name }} {{ network_interface.driver_module }} {{ network_interface.ethernet_type }}
Management Interfaces
{% for bmc in machine.enclosure.get_bmc_list %} {% empty %} {% endfor %}
MAC Address BMC Comment
{{ bmc.mac_address }} {{ bmc.fqdn }} (http|https) {{ bmc.comment }}
No BMC(s) available.
{% endblock %}