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

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

{% include 'errors_block.html' %}

{% trans "Network name:" %}

{% trans "Device:" %}

{% trans "State" %}

{% trans "Autostart" %}

{{ pool }}

{{ device }}

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

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

{% if state %}

{% trans "IPv4 Forwarding:" %}

{% trans "Network:" %}

{% trans "DHCP:" %}

{% if ipv4_dhcp_range_start and ipv4_dhcp_range_end %}

{% trans "Start:" %}

{% trans "End:" %}

{% endif %}

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

{{ ipv4_network }}

{% 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 %}

{{ ipv4_dhcp_range_start }}

{{ ipv4_dhcp_range_end }}

{% endif %}
{% if fixed_address %}
{% for fix in fixed_address %} {% endfor %}
{% trans "Address" %} {% trans "MAC" %}
{{ fix.host }} {{ fix.mac }}
{% endif %} {% endif %} {% endblock %} {% block script %} {% endblock %}