{% extends 'generic/object_detail.html' %} {% load helpers %} {% block breadcrumbs %}
  • Namespaces
  • {{ object.namespace | hyperlinked_object }}
  • {{ verbose_name_plural|bettertitle }}
  • {% block extra_breadcrumbs %}{% endblock extra_breadcrumbs %}
  • {{ object|hyperlinked_object }}
  • {% endblock 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 %} {% endif %} {% endblock extra_nav_tabs %} {% block content_left_page %}
    Prefix
    Namespace {{ object.namespace|hyperlinked_object }}
    IP Version IPv{{ object.ip_version }}
    Status {{ object.status| hyperlinked_object_with_color }}
    Role {{ object.role | hyperlinked_object_with_color }}
    Type {{ object.get_type_display }}
    Tenant {% if object.tenant and object.tenant.tenant_group %} {{ object.tenant.tenant_group|hyperlinked_object }} / {% endif %} {{ object.tenant|hyperlinked_object }}
    Location {% include 'dcim/inc/location_hierarchy.html' with location=object.location %}
    VLAN {% if object.vlan and object.vlan.vlan_group %} {{ object.vlan.vlan_group|hyperlinked_object }} / {% endif %} {{ object.vlan|hyperlinked_object }}
    RIR {{ object.rir|hyperlinked_object }}
    Date Allocated {{ object.date_allocated|placeholder }}
    Description {{ object.description|placeholder }}
    Utilization {% utilization_graph object.get_utilization %}
    {% endblock content_left_page %} {% block content_right_page %} {% include 'panel_table.html' with table=parent_prefix_table heading='Parent Prefixes' panel_class='default' %} {% include "utilities/obj_table.html" with table=vrf_table table_template="panel_table.html" heading="Assigned VRFs" disable_pagination=False %} {% endblock content_right_page %}