{% extends "base.html" %} {% load i18n %} {% load staticfiles %} {% block title %}{% trans "Network" %} - {{ pool }}{% endblock %} {% block content %}

{% trans "Network:" %} {{ pool }}

{% include 'errors_block.html' %} {% include 'messages_block.html' %}

{% trans "Network Name" %}:

{% trans "Device" %}:

{% trans "MAC" %}:

{% trans "State" %}:

{% trans "Autostart" %}:

{{ pool }}

{{ device }}

{{ net_mac }}

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

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

{% csrf_token %}

{% trans "IPv4 Forwarding" %}:

{% trans "Network" %}:

{% trans "DHCP" %}:

{% if ipv4_dhcp_range_start and ipv4_dhcp_range_end %}

{% trans "Start" %}:

{% trans "End" %}:

{% endif %}

{% ifequal net_forward.0 'nat' %} {% trans "NAT" %} {% endifequal %} {% ifequal net_forward.0 'route' %} {% trans "ROUTE" %} {% endifequal %} {% ifequal net_forward.0 'bridge' %} {% trans "BRIDGE" %} {% endifequal %} {% if not net_forward.0 %} {% trans "ISOLATE" %} {% endif %}

{{ ipv4_network|default:"-" }}

{% if ipv4_dhcp_range_start and ipv4_dhcp_range_end %} {% trans "ON" %} {% else %} {% trans "OFF" %} {% endif %}

{% if ipv4_dhcp_range_start and ipv4_dhcp_range_end %}
{% csrf_token %} {% if state %}

{{ ipv4_dhcp_range_start }}

{{ ipv4_dhcp_range_end }}

{% else %}

{% endif %}
{% endif %}
{% if ipv4_dhcp_range_start and ipv4_dhcp_range_end %} {% if state %} {% include 'modify_ipv4_fixed_address.html' %} {% endif %}
{% endif %} {% if ipv4_fixed_address %}
{% for fix4 in ipv4_fixed_address %} {% csrf_token %} {% endfor %}
{% trans "MAC" %} {% trans "Address" %} {% trans "Name" %} {% trans "Action" %}
{% endif %}

{% trans "IPv6 Forwarding" %}:

{% trans "Network" %}:

{% trans "DHCP" %}:

{% if ipv6_dhcp_range_start and ipv6_dhcp_range_end %}

{% trans "Start" %}:

{% trans "End" %}:

{% endif %}

{% if not net_forward.0 %} {% trans "ISOLATE" %} {% else %} {% trans "ROUTE" %} {% endif %}

{{ ipv6_network|default:"-" }}

{% if ipv6_dhcp_range_start and ipv6_dhcp_range_end %} {% trans "ON" %} {% else %} {% trans "OFF" %} {% endif %}

{% if ipv6_dhcp_range_start and ipv6_dhcp_range_end %}
{% csrf_token %} {% if state %}

{{ ipv6_dhcp_range_start }}

{{ ipv6_dhcp_range_end }}

{% else %}

{% endif %}
{% endif %}
{% if ipv6_dhcp_range_start and ipv6_dhcp_range_end %} {% if state %} {% include 'modify_ipv6_fixed_address.html' %} {% endif %}
{% endif %} {% if ipv6_fixed_address %}
{% for fix6 in ipv6_fixed_address %} {% csrf_token %} {% endfor %}
{% trans "ID" %} {% trans "Address" %} {% trans "Name" %} {% trans "Action" %}
{% endif %} {% if net_forward.0 == 'route' or net_forward.0 == 'nat' or net_forward.0 == 'isolated' %} {% if state == 0 and qos.items|length != 2%}
{% csrf_token %} {% include 'add_network_qos.html' %}
{% endif %}
{% for q, att in qos.items %} {% csrf_token %} {% endfor %}
{% trans "Direction" %} {% trans "Average" %} {% trans "Peak" %} {% trans "Burst" %} {% trans "Actions" %}
{% endif %} {% endblock %} {% block script %} {% endblock %}