{% extends 'base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% load plugins %} {% block header %}
{% plugin_buttons aggregate %} {% if perms.ipam.add_aggregate %} {% clone_button aggregate %} {% endif %} {% if perms.ipam.change_aggregate %} {% edit_button aggregate %} {% endif %} {% if perms.ipam.delete_aggregate %} {% delete_button aggregate %} {% endif %}

{% block title %}{{ aggregate }}{% endblock %}

{% include 'inc/created_updated.html' with obj=aggregate %} {% include 'ipam/inc/toggle_available.html' %}
{% custom_links aggregate %}
{% endblock %} {% block content %}
Aggregate
Family IPv{{ aggregate.family }}
RIR {{ aggregate.rir }}
Utilization {{ aggregate.get_utilization }}%
Tenant {% if aggregate.tenant %} {% if prefix.aggregate.group %} {{ aggregate.tenant.group }} / {% endif %} {{ aggregate.tenant }} {% else %} None {% endif %}
Date Added {{ aggregate.date_added|placeholder }}
Description {{ aggregate.description|placeholder }}
{% plugin_left_page aggregate %}
{% include 'inc/custom_fields_panel.html' with obj=aggregate %} {% include 'extras/inc/tags_panel.html' with tags=aggregate.tags.all url='ipam:aggregate_list' %} {% plugin_right_page aggregate %}
{% plugin_full_width_page aggregate %}
{% include 'utilities/obj_table.html' with table=prefix_table table_template='panel_table.html' heading='Child Prefixes' bulk_edit_url='ipam:prefix_bulk_edit' bulk_delete_url='ipam:prefix_bulk_delete' %}
{% endblock %}