1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

84 lines
2.9 KiB
HTML
Raw Normal View History

2021-03-02 15:58:33 -05:00
{% extends 'generic/object.html' %}
{% load buttons %}
2019-04-15 21:38:04 -04:00
{% load custom_links %}
2018-05-18 11:09:11 -04:00
{% load helpers %}
{% load plugins %}
2016-03-01 11:23:03 -05:00
2021-03-02 15:58:33 -05:00
{% block breadcrumbs %}
<li><a href="{% url 'ipam:aggregate_list' %}">Aggregates</a></li>
<li><a href="{% url 'ipam:aggregate_list' %}?rir={{ object.rir.slug }}">{{ object.rir }}</a></li>
<li>{{ object }}</li>
{% endblock %}
{% block buttons %}
{% include 'ipam/inc/toggle_available.html' %}
{{ block.super }}
2018-06-14 16:15:14 -04:00
{% endblock %}
{% block content %}
2016-03-01 11:23:03 -05:00
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
<strong>Aggregate</strong>
2016-03-01 11:23:03 -05:00
</div>
2016-12-14 17:09:33 -05:00
<table class="table table-hover panel-body attr-table">
2016-03-01 11:23:03 -05:00
<tr>
<td>Family</td>
<td>IPv{{ object.family }}</td>
2016-03-01 11:23:03 -05:00
</tr>
<tr>
<td>RIR</td>
<td>
<a href="{% url 'ipam:aggregate_list' %}?rir={{ object.rir.slug }}">{{ object.rir }}</a>
2016-03-01 11:23:03 -05:00
</td>
</tr>
<tr>
<td>Utilization</td>
<td>
{{ object.get_utilization }}%
</td>
</tr>
2020-11-10 11:58:59 -05:00
<tr>
<td>Tenant</td>
<td>
{% if object.tenant %}
{% if prefix.object.group %}
<a href="{{ object.tenant.group.get_absolute_url }}">{{ object.tenant.group }}</a> /
2020-11-10 11:58:59 -05:00
{% endif %}
<a href="{{ object.tenant.get_absolute_url }}">{{ object.tenant }}</a>
2020-11-10 11:58:59 -05:00
{% else %}
<span class="text-muted">None</span>
{% endif %}
</td>
</tr>
2016-03-01 11:23:03 -05:00
<tr>
<td>Date Added</td>
<td>{{ object.date_added|placeholder }}</td>
2016-03-01 11:23:03 -05:00
</tr>
<tr>
<td>Description</td>
<td>{{ object.description|placeholder }}</td>
2016-03-01 11:23:03 -05:00
</tr>
</table>
</div>
{% plugin_left_page object %}
2016-03-01 11:23:03 -05:00
</div>
2016-08-15 15:24:23 -04:00
<div class="col-md-6">
2020-11-19 13:53:37 -05:00
{% include 'inc/custom_fields_panel.html' %}
{% include 'extras/inc/tags_panel.html' with tags=object.tags.all url='ipam:aggregate_list' %}
{% plugin_right_page object %}
</div>
</div>
<div class="row">
<div class="col-md-12">
{% plugin_full_width_page object %}
2016-08-15 15:24:23 -04:00
</div>
2016-03-01 11:23:03 -05:00
</div>
<div class="row">
<div class="col-md-12">
{% 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' %}
2016-03-01 11:23:03 -05:00
</div>
</div>
{% endblock %}