{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Interface" %} - {{ iface }}{% endblock %} {% block content %}
{% include 'errors_block.html' %}
{% trans "Interface" %}
{{ iface }}
{% trans "IPv4" %} ({% ifequal ipv4 None %}{% trans 'None' %}{% else %}{{ ipv4_type }}{% endifequal %})
{{ ipv4 }}
{% trans "IPv6" %} ({% ifequal ipv6 None %}{% trans 'None' %}{% else %}{{ ipv6_type }}{% endifequal %})
{{ ipv6 }}
{% trans "MAC" %}
{{ mac }}
{% trans "Interface Type" %}
{{ itype }}
{% ifequal itype 'bridge' %}
{% trans "Bridge Device" %}
{{ bridge }}
{% endifequal %}
{% trans "Boot Mode" %}
{{ start_mode }}
{% trans "State" %}
{% csrf_token %} {% ifequal state 0 %} {% else %} {% endifequal %}
{% trans 'Slaves' %}
{% ifequal itype 'bridge' %} {% for iface in slave_ifaces %} {% endfor %}
{% trans 'MAC' %} {% trans 'Name' %} {% trans 'Type' %} {% trans 'Speed' %} {% trans 'State' %}
{{ iface.mac }} {{ iface.name }} {{ iface.type }} {{ iface.speed }} {{ iface.state }}
{% endifequal %}
{% endblock %}