{% extends "app_home/base.html" %} {% load static %} {% load i18n %} {% block navbar_app %} {% include 'app_home/_sidebar.html' %} {% endblock %} {% block title %}

{{ IPAM_APPNAME|default:"IPAM - IP Management" }}


{% endblock %} {% block content %}
{% if 'p_ipam_read' in aaa.perms %}
  {% translate 'IP Subnets' %} ({{ count_subnet }})
{% endif %} {% if 'p_ipam_read' in aaa.perms %}
  {% translate 'VLANs' %} ({{ count_vlan }})
{% endif %}
  {% translate 'Calculator' %}


{% if ip %}
{% translate 'IP Information' %}
IP {{ ip.ip }}
Technical private: {{ip.is_private|yesno:"Yes,No,"}}
global: {{ip.is_global|yesno:"Yes,No,"}}
multicast: {{ip.is_multicast|yesno:"Yes,No,"}}
unspecified: {{ip.is_unspcified|yesno:"Yes,No,"}}
reserved: {{ip.is_reserved|yesno:"Yes,No,"}}
loopback: {{ip.is_loopback|yesno:"Yes,No,"}}
version:{{ip.version}}
{% endif %} {% if subnet %}
{% translate 'Subnet Information' %}
Subnet {{ subnet.subnet }}
name: {{ subnet.description|default:'' }}
size: {{ subnet.size}}
netmask: {{ subnet.netmask}}
first: {{ subnet.first}}
last: {{ subnet.last}}
{% endif %} {% if parent %} {% for p in parent %} {% endfor %}
{% translate 'Parent subnets' %}
{{ p }} {{ p.description|default:'' }}
{% endif %} {% if child %} {% for c in child %} {% endfor %}
{% translate 'Child subnets (depth max = 3)' %}
{{ c }} {{ c.description|default:'' }}
{% endif %} {% if related %} {% for eav in related %} {% endfor %}
{% translate 'Related Objects' %}
{{ eav.classname }} {{ eav.displayname|default:eav.keyname }}
{% endif %} {% endblock %}