mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
41 lines
858 B
Python
41 lines
858 B
Python
from utilities.choices import ChoiceSet
|
|
|
|
|
|
#
|
|
# Circuits
|
|
#
|
|
|
|
class CircuitStatusChoices(ChoiceSet):
|
|
key = 'Circuit.status'
|
|
|
|
STATUS_DEPROVISIONING = 'deprovisioning'
|
|
STATUS_ACTIVE = 'active'
|
|
STATUS_PLANNED = 'planned'
|
|
STATUS_PROVISIONING = 'provisioning'
|
|
STATUS_OFFLINE = 'offline'
|
|
STATUS_DECOMMISSIONED = 'decommissioned'
|
|
|
|
CHOICES = [
|
|
(STATUS_PLANNED, 'Planned', 'cyan'),
|
|
(STATUS_PROVISIONING, 'Provisioning', 'blue'),
|
|
(STATUS_ACTIVE, 'Active', 'green'),
|
|
(STATUS_OFFLINE, 'Offline', 'red'),
|
|
(STATUS_DEPROVISIONING, 'Deprovisioning', 'yellow'),
|
|
(STATUS_DECOMMISSIONED, 'Decommissioned', 'gray'),
|
|
]
|
|
|
|
|
|
#
|
|
# CircuitTerminations
|
|
#
|
|
|
|
class CircuitTerminationSideChoices(ChoiceSet):
|
|
|
|
SIDE_A = 'A'
|
|
SIDE_Z = 'Z'
|
|
|
|
CHOICES = (
|
|
(SIDE_A, 'A'),
|
|
(SIDE_Z, 'Z')
|
|
)
|