netbox-community/netbox#6930: Don't linkify ID in device component template tables

This commit is contained in:
Rhys Barrie 2021-10-29 12:25:23 -04:00
parent 02f2cf49e2
commit 8aef9f3a48

View File

@ -93,6 +93,9 @@ class DeviceTypeTable(BaseTable):
class ComponentTemplateTable(BaseTable):
pk = ToggleColumn()
id = tables.Column(
verbose_name='ID'
)
name = tables.Column(
order_by=('_name',)
)