{% extends 'generic/object.html' %} {% load helpers %} {% load plugins %} {% block breadcrumbs %} {% if object.vrf %} {% endif %} {% endblock %} {% block extra_controls %} {% include 'ipam/inc/toggle_available.html' %} {% if perms.ipam.add_prefix and active_tab == 'prefixes' and first_available_prefix %}
Add Child Prefix
{% endif %} {% if perms.ipam.add_ipaddress and active_tab == 'ip-addresses' and first_available_ip %}
Add an IP Address
{% endif %} {% comment %} {{ block.super }} {% endcomment %} {% endblock %} {% block content %} {% block tabs %} {% endblock %}
Prefix
{{ object.get_status_display }} {% if object.is_pool %} Is a Pool {% else %} Not a Pool {% endif %}
Family IPv{{ object.family }}
VRF {% if object.vrf %} {{ object.vrf }} ({{ object.vrf.rd }}) {% else %} Global {% endif %}
Tenant {% if object.tenant %} {% if object.tenant.group %} {{ object.tenant.group }} / {% endif %} {{ object.tenant }} {% else %} None {% endif %}
Aggregate {% if aggregate %} {{ aggregate.prefix }} ({{ aggregate.rir }}) {% else %} None {% endif %}
Site {% if object.site %} {% if object.site.region %} {{ object.site.region }} / {% endif %} {{ object.site }} {% else %} None {% endif %}
VLAN {% if object.vlan %} {% if object.vlan.group %} {{ object.vlan.group }} / {% endif %} {{ object.vlan.display_name }} {% else %} None {% endif %}
Role {% if object.role %} {{ object.role }} {% else %} None {% endif %}
Description {{ object.description|placeholder }}
Utilization {% utilization_graph object.get_utilization %}
{% include 'inc/custom_fields_panel.html' %} {% plugin_left_page object %}
{% if duplicate_prefix_table.rows %} {% include 'panel_table.html' with table=duplicate_prefix_table heading='Duplicate Prefixes' %} {% endif %} {% include 'panel_table.html' with table=parent_prefix_table heading='Parent Prefixes' %} {% plugin_right_page object %}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:prefix_list' %}
{% plugin_full_width_page object %}
{% endblock %}