Added hyperlink to the Description field in the device page

This commit is contained in:
Julio-Oliveira-Encora 2024-05-07 14:54:21 -03:00
parent 9316f48a20
commit 215b18137c

View File

@ -141,6 +141,10 @@ class DeviceTable(TenancyColumnsMixin, ContactsColumnMixin, NetBoxTable):
template_code=DEVICE_LINK,
linkify=True
)
description = tables.Column(
verbose_name=_('Description'),
linkify=True
)
status = columns.ChoiceFieldColumn(
verbose_name=_('Status'),
)