{% extends 'generic/object_detail.html' %} {% load helpers %} {% block extra_breadcrumbs %} {% if object.vrf %}
  • {{ object.vrf }}
  • {% endif %} {% endblock extra_breadcrumbs %} {% block extra_buttons %} {% 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 %} {% endblock extra_buttons %} {% block panel_buttons %} {% include 'ipam/inc/toggle_available.html' %} {% endblock panel_buttons %} {% block extra_nav_tabs %} {% if perms.ipam.view_ipaddress and object.status.slug != 'container' %} {% endif %} {% endblock extra_nav_tabs %} {% block content_left_page %}
    Prefix
    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 }} {% else %} None {% endif %}
    Status {{ object.get_status_display }}
    Role {% if object.role %} {{ object.role }} {% else %} None {% endif %}
    Description {{ object.description|placeholder }}
    Is a pool {% if object.is_pool %} {% else %} {% endif %}
    Utilization {% utilization_graph object.get_utilization %}
    {% endblock content_left_page %} {% block content_right_page %} {% if duplicate_prefix_table.rows %} {% include 'panel_table.html' with table=duplicate_prefix_table heading='Duplicate Prefixes' panel_class='danger' %} {% endif %} {% include 'panel_table.html' with table=parent_prefix_table heading='Parent Prefixes' panel_class='default' %} {% endblock content_right_page %}