mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-25 01:48:38 -06:00
Closes #6278: Note device locations on cable traces
This commit is contained in:
parent
19a2b9042f
commit
87b4cfff1a
@ -5,6 +5,7 @@
|
|||||||
### Enhancements
|
### Enhancements
|
||||||
|
|
||||||
* [#6275](https://github.com/netbox-community/netbox/issues/6275) - Linkify rack, device counts on locations list
|
* [#6275](https://github.com/netbox-community/netbox/issues/6275) - Linkify rack, device counts on locations list
|
||||||
|
* [#6278](https://github.com/netbox-community/netbox/issues/6278) - Note device locations on cable traces
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
@ -2,6 +2,9 @@
|
|||||||
<strong><a href="{{ device.get_absolute_url }}">{{ device }}</a></strong><br />
|
<strong><a href="{{ device.get_absolute_url }}">{{ device }}</a></strong><br />
|
||||||
{{ device.device_type.manufacturer }} {{ device.device_type }}<br />
|
{{ device.device_type.manufacturer }} {{ device.device_type }}<br />
|
||||||
<a href="{{ device.site.get_absolute_url }}">{{ device.site }}</a>
|
<a href="{{ device.site.get_absolute_url }}">{{ device.site }}</a>
|
||||||
|
{% if device.location %}
|
||||||
|
/ <a href="{{ device.location.get_absolute_url }}">{{ device.location }}</a>
|
||||||
|
{% endif %}
|
||||||
{% if device.rack %}
|
{% if device.rack %}
|
||||||
/ <a href="{{ device.rack.get_absolute_url }}">{{ device.rack }}</a>
|
/ <a href="{{ device.rack.get_absolute_url }}">{{ device.rack }}</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user