{% load i18n %}{% load static %}
{% if rw_ce %}

{% trans 'Add an IP address' %}

{% endif %} {% if show_table %}
{% for item in addresses %} {% endfor %}
{% trans 'IP' %} {% trans 'Mask' %} {% trans 'Gateway' %} {% trans 'DNS 1' %} {% trans 'DNS 2' %} {% trans 'DHCP' %} {% trans 'MAC' %}
{% if item.is_dynamic %} {% else %} {% endif %} {% if rw_ce %} {% endif %} {% if item.ip_address %}{{ item.ip_address }}{% endif %} {% if item.mask %}{{ item.mask }}{% endif %} {% if item.gate %}{{ item.gate }}{% endif %} {% if item.dns1 %}{{ item.dns1 }}{% endif %} {% if item.dns2 %}{{ item.dns2 }}{% endif %} {% if item.dhcp %}{{ item.dhcp }}{% endif %} {% if item.mac_address %}{{ item.mac_address }}{% endif %}
{% endif %}