mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-06 07:38:16 -06:00
Fix IFACE_ENABLED_CHOICES...again
This commit is contained in:
parent
266e948865
commit
6ad30dab73
@ -49,11 +49,11 @@ IFACE_ORDERING_CHOICES = [
|
||||
]
|
||||
|
||||
# Interface enabled as choice
|
||||
IFACE_DISABLED = 0
|
||||
IFACE_ENABLED = 1
|
||||
IFACE_DISABLED = False
|
||||
IFACE_ENABLED = True
|
||||
IFACE_ENABLED_CHOICES = [
|
||||
[IFACE_ENABLED,'Enabled'],
|
||||
[IFACE_DISABLED,'Disabled']
|
||||
[IFACE_DISABLED, 'Disabled'],
|
||||
[IFACE_ENABLED, 'Enabled'],
|
||||
]
|
||||
|
||||
# Interface form factors
|
||||
|
Loading…
Reference in New Issue
Block a user