{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Interface" %} - {{ iface }}{% endblock %} {% block content %}

{% trans "Interface:" %} {{ iface }}

{% include 'errors_block.html' %}

{% trans "Interface" %}:

{% trans "IPv4" %} ({% ifequal ipv4 None %}{% trans 'None' %}{% else %}{{ ipv4_type }}{% endifequal %}):

{% trans "IPv6" %} ({% ifequal ipv6 None %}{% trans 'None' %}{% else %}{{ ipv6_type }}{% endifequal %}):

{% trans "MAC Adress" %}:

{% trans "Interface Type" %}:

{% ifequal itype 'bridge' %}

{% trans "Bridge Device" %}:

{% endifequal %}

{% trans "Boot Mode" %}:

{% trans "State" %}:

{{ iface }}

{{ ipv4 }}

{{ ipv6 }}

{{ mac }}

{{ itype }}

{% ifequal itype 'bridge' %}

{{ bridge }}

{% endifequal %}

{{ start_mode }}

{% csrf_token %} {% ifequal state 0 %} {% else %} {% endifequal %}

{% ifequal itype 'bridge' %} {% for iface in slave_ifaces %} {% endfor %}
{% trans 'Slaves' %}
{% trans 'MAC' %} {% trans 'Name' %} {% trans 'Type' %} {% trans 'Speed' %} {% trans 'State' %}
{{ iface.mac }} {{ iface.name }} {{ iface.type }} {{ iface.speed }} {{ iface.state }}
{% endifequal %}
{% endblock %}