mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
Add missing tenant attribute
This commit is contained in:
@ -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>
|
||||||
|
Reference in New Issue
Block a user