{% if write_access %}
add
{% ifequal target.class_name "device" %}
|
auto-assign
{% endifequal %}
{% endif %}
{% if network_host_list %}
IP-address |
Primary Address |
Description |
Action |
{% for network in network_host_list %}
{% if forloop.counter|divisibleby:"2" %}
{% else %}
{% endif %}
{{ network|escape }}
|
{% if network.attributes.secondary %}
False
{% else %}
True
{% endif %}
|
{{ network.attributes.description|escape }}
|
{% if write_access %}
delete
{% endif %}
|
{% endfor %}
{% endif %}
{% if network_subnet_list %}
Subnet/Range |
Description |
Auto-assign |
Action |
{% for network in network_subnet_list %}
{% if forloop.counter|divisibleby:"2" %}
{% else %}
{% endif %}
{{ network|escape }}
|
{{ network.attributes.description|escape }}
|
{{ network.attributes.autoassign|escape }}
|
delete
|
{% endfor %}
{% endif %}
Hidden content, click to expand.