{% extends "base.html" %} {% load i18n %} {% block title %}{% trans "Interface" %} - {{ iface }}{% endblock %} {% block page_heading %}{% trans "Interface" %}: {{ iface }}{% endblock page_heading %} {% block content %}
{% trans "Interface" %}
{{ iface }}
{% trans "IPv4" %} ({% if ipv4 == None %}{% trans 'None' %}{% else %}{{ ipv4_type }}{% endif %})
{{ ipv4 }}
{% trans "IPv6" %} ({% if ipv6 == None %}{% trans 'None' %}{% else %}{{ ipv6_type }}{% endif %})
{{ ipv6 }}
{% trans "MAC" %}
{{ mac }}
{% trans "Interface Type" %}
{{ itype }}
{% if itype == 'bridge' %}
{% trans "Bridge Device" %}
{{ bridge }}
{% endif %}
{% trans "Boot Mode" %}
{{ start_mode }}
{% trans "State" %}
{% csrf_token %} {% if state == 0 %} {% else %} {% endif %}
{% trans 'Slaves' %}
{% if 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 }}
{% endif %}
{% endblock %}