{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Interfaces" %} - {{ compute.name }}{% endblock %} {% block content %}
{% include 'sidebar.html' %}
{% include "create_stg_block.html" %}

{{ compute.name }}

{% include 'compute_block_link.html' %} {% include 'errors_block.html' %}
{% if not ifaces_all %}

{% trans "You do not have any storage pools" %}

{% else %} {% for iface in ifaces_all %}

{% trans "Type" %}: {{ iface.type }}

{% trans "MAC" %}: {{ iface.mac }}

{% endfor %} {% endif %}
{% endblock %}