{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Interface" %}{% endblock %} {% block content %} {% include 'sidebar.html' %}
{% if errors %} {% for error in errors %}
{{ error }}
{% endfor %} {% endif %}
New Interface
{% if ifaces_all %} {% for iface in ifaces_all %}

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

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

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