mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-07 08:08:15 -06:00
Revert description column
This commit is contained in:
parent
34c3c2e10e
commit
f7d3717413
@ -556,8 +556,8 @@ class InterfaceListTable(BaseTable):
|
|||||||
enabled = tables.TemplateColumn(template_code=INTERFACE_ENABLED, verbose_name='Enabled')
|
enabled = tables.TemplateColumn(template_code=INTERFACE_ENABLED, verbose_name='Enabled')
|
||||||
form_factor = tables.Column(verbose_name='Form Factor')
|
form_factor = tables.Column(verbose_name='Form Factor')
|
||||||
mac_address = tables.Column(verbose_name='MAC Address')
|
mac_address = tables.Column(verbose_name='MAC Address')
|
||||||
description = tables.TemplateColumn(template_code=INTERFACE_LINK, verbose_name='Description')
|
description = tables.Column(verbose_name='Description')
|
||||||
|
|
||||||
class Meta(BaseTable.Meta):
|
class Meta(BaseTable.Meta):
|
||||||
model = Interface
|
model = Interface
|
||||||
fields = ('pk','device', 'name', 'form_factor','mac_address', 'description')
|
fields = ('pk','device', 'name', 'enabled', 'form_factor','mac_address', 'description')
|
||||||
|
Loading…
Reference in New Issue
Block a user