mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
12 lines
502 B
HTML
12 lines
502 B
HTML
<div class="node">
|
|
<strong><a href="{{ device.get_absolute_url }}">{{ device }}</a></strong><br />
|
|
{{ device.device_type.manufacturer }} {{ device.device_type }}<br />
|
|
<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 %}
|
|
/ <a href="{{ device.rack.get_absolute_url }}">{{ device.rack }}</a>
|
|
{% endif %}
|
|
</div>
|