1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fixes #3140: Add bulk edit capability for power outlets and console server ports

This commit is contained in:
Jeremy Stretch
2019-05-02 13:56:30 -04:00
parent 25c8007b66
commit a8c57313d3
7 changed files with 31 additions and 4 deletions

View File

@ -576,7 +576,7 @@ class ConsoleServerPortTable(BaseTable):
class Meta(BaseTable.Meta):
model = ConsoleServerPort
fields = ('name',)
fields = ('name', 'description')
class PowerPortTable(BaseTable):
@ -590,7 +590,7 @@ class PowerOutletTable(BaseTable):
class Meta(BaseTable.Meta):
model = PowerOutlet
fields = ('name',)
fields = ('name', 'description')
class InterfaceTable(BaseTable):