{% extends '_base.html' %} {% load buttons %} {% load custom_links %} {% load helpers %} {% block header %}
{% if perms.ipam.add_aggregate %} {% clone_button 'ipam:aggregate_add' aggregate %} {% endif %} {% if perms.ipam.change_aggregate %} Edit this aggregate {% endif %} {% if perms.ipam.delete_aggregate %} Delete this aggregate {% endif %}

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

{% include 'inc/created_updated.html' with obj=aggregate %}
{% custom_links aggregate %}
{% endblock %} {% block content %}
Aggregate
Family {{ aggregate.get_family_display }}
RIR {{ aggregate.rir }}
Utilization {{ aggregate.get_utilization }}%
Date Added {{ aggregate.date_added|placeholder }}
Description {{ aggregate.description|placeholder }}
{% include 'inc/custom_fields_panel.html' with obj=aggregate %} {% include 'extras/inc/tags_panel.html' with tags=aggregate.tags.all url='ipam:aggregate_list' %}
{% 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 %}