{% extends '_base.html' %} {% block content %}
{% 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 %}
Aggregate
Family {{ aggregate.get_family_display }}
RIR {{ aggregate.rir }}
Utilization {{ aggregate.get_utilization }}%
Date Added {% if aggregate.date_added %} {{ aggregate.date_added }} {% else %} N/A {% endif %}
Description {% if aggregate.description %} {{ aggregate.description }} {% else %} N/A {% endif %}
{% with aggregate.get_custom_fields as custom_fields %} {% include 'inc/custom_fields_panel.html' %} {% endwith %}
{% 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 %}