mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-23 04:22:01 -06:00
Add missing tenant attribute
This commit is contained in:
parent
f631f8c45b
commit
46b48ee55d
@ -80,6 +80,19 @@
|
|||||||
{{ aggregate.get_utilization }}%
|
{{ aggregate.get_utilization }}%
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Tenant</td>
|
||||||
|
<td>
|
||||||
|
{% if aggregate.tenant %}
|
||||||
|
{% if prefix.aggregate.group %}
|
||||||
|
<a href="{{ aggregate.tenant.group.get_absolute_url }}">{{ aggregate.tenant.group }}</a> /
|
||||||
|
{% endif %}
|
||||||
|
<a href="{{ aggregate.tenant.get_absolute_url }}">{{ aggregate.tenant }}</a>
|
||||||
|
{% else %}
|
||||||
|
<span class="text-muted">None</span>
|
||||||
|
{% endif %}
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>Date Added</td>
|
<td>Date Added</td>
|
||||||
<td>{{ aggregate.date_added|placeholder }}</td>
|
<td>{{ aggregate.date_added|placeholder }}</td>
|
||||||
|
Loading…
Reference in New Issue
Block a user