{% extends "base.html" %} {% load i18n %} {% load static %} {% load bootstrap_icons %} {% block title %}{% trans "Interfaces" %} - {{ compute.name }}{% endblock %} {% block page_heading %}{{ compute.name }} - {% trans "Interfaces" %}{% endblock page_heading %} {% block page_heading_extra %} {% include 'create_iface_block.html' %} {% endblock page_heading_extra %} {% block content %}
{% if not ifaces_all %}
{% bs_icon 'exclamation-triangle' %} {% trans "Warning" %}: {% trans "Hypervisor doesn't have any Interfaces" %}
{% else %} {% for iface in ifaces_all %}

{% trans "Type" %}:

{% trans "MAC" %}:

{{ iface.type }}

{{ iface.mac }}

{% endfor %} {% endif %}
{% endblock %} {% block script %} {% endblock %}