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

Add position field for module bays

This commit is contained in:
jeremystretch
2021-12-20 09:51:55 -05:00
parent ed6a160372
commit eaa1165611
14 changed files with 65 additions and 31 deletions

View File

@@ -886,7 +886,7 @@ class ModuleBayTemplateBulkEditForm(BulkEditForm):
)
class Meta:
nullable_fields = ('label', 'description')
nullable_fields = ('label', 'position', 'description')
class DeviceBayTemplateBulkEditForm(BulkEditForm):
@@ -1153,7 +1153,7 @@ class ModuleBayBulkEditForm(
)
class Meta:
nullable_fields = ['label', 'description']
nullable_fields = ['label', 'position', 'description']
class DeviceBayBulkEditForm(