mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-29 20:06:25 -06:00
Add status to rack elevation device tooltip
This commit is contained in:
parent
9c7f2ec98c
commit
f6d88bb077
@ -48,6 +48,7 @@ def get_device_description(device):
|
|||||||
|
|
||||||
Name: <name>
|
Name: <name>
|
||||||
Role: <role>
|
Role: <role>
|
||||||
|
Status: <status>
|
||||||
Device Type: <manufacturer> <model> (<u_height>)
|
Device Type: <manufacturer> <model> (<u_height>)
|
||||||
Asset tag: <asset_tag> (if defined)
|
Asset tag: <asset_tag> (if defined)
|
||||||
Serial: <serial> (if defined)
|
Serial: <serial> (if defined)
|
||||||
@ -55,6 +56,7 @@ def get_device_description(device):
|
|||||||
"""
|
"""
|
||||||
description = f'Name: {device.name}'
|
description = f'Name: {device.name}'
|
||||||
description += f'\nRole: {device.role}'
|
description += f'\nRole: {device.role}'
|
||||||
|
description += f'\nStatus: {device.status.capitalize()}'
|
||||||
u_height = f'{floatformat(device.device_type.u_height)}U'
|
u_height = f'{floatformat(device.device_type.u_height)}U'
|
||||||
description += f'\nDevice Type: {device.device_type.manufacturer.name} {device.device_type.model} ({u_height})'
|
description += f'\nDevice Type: {device.device_type.manufacturer.name} {device.device_type.model} ({u_height})'
|
||||||
if device.asset_tag:
|
if device.asset_tag:
|
||||||
|
Loading…
Reference in New Issue
Block a user