mirror of
https://github.com/netbox-community/netbox.git
synced 2026-03-30 06:12:13 +02:00
* 7025 CircuitRedundancyGroups * 7025 CircuitRedundancyGroups api * 7025 CircuitRedundancyGroups api * 7025 CircuitRedundancyGroups tests * 7025 CircuitRedundancyGroup -> CircuitGroup * 7025 add tenancy * 7025 linkify name * 7025 missing file * 7025 circuitgroupassignment * 7025 base group assignment working * 7025 assignments * 7025 fix forms/tests for CircuitGroup * 7025 fix api tests * 7025 view tests * 7025 CircuitGroupAssignment tests * 7025 fix typo * 7025 fix typo * 7025 fix tests * 7025 remove m2m * 7025 add count to serializer * 7025 fix test * 7025 documentation * 7025 review comments * 7025 review comments * 7025 add search index * Make CircuitPriorityChoices extensible * Add group assignment table to circuit view * Misc cleanup --------- Co-authored-by: Jeremy Stretch <jstretch@netboxlabs.com>
95 lines
2.2 KiB
Python
95 lines
2.2 KiB
Python
from django.utils.translation import gettext_lazy as _
|
|
|
|
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'),
|
|
]
|
|
|
|
|
|
class CircuitCommitRateChoices(ChoiceSet):
|
|
key = 'Circuit.commit_rate'
|
|
|
|
CHOICES = [
|
|
(10000, '10 Mbps'),
|
|
(100000, '100 Mbps'),
|
|
(1000000, '1 Gbps'),
|
|
(10000000, '10 Gbps'),
|
|
(25000000, '25 Gbps'),
|
|
(40000000, '40 Gbps'),
|
|
(100000000, '100 Gbps'),
|
|
(200000000, '200 Gbps'),
|
|
(400000000, '400 Gbps'),
|
|
(1544, 'T1 (1.544 Mbps)'),
|
|
(2048, 'E1 (2.048 Mbps)'),
|
|
]
|
|
|
|
|
|
#
|
|
# CircuitTerminations
|
|
#
|
|
|
|
class CircuitTerminationSideChoices(ChoiceSet):
|
|
|
|
SIDE_A = 'A'
|
|
SIDE_Z = 'Z'
|
|
|
|
CHOICES = (
|
|
(SIDE_A, 'A'),
|
|
(SIDE_Z, 'Z')
|
|
)
|
|
|
|
|
|
class CircuitTerminationPortSpeedChoices(ChoiceSet):
|
|
key = 'CircuitTermination.port_speed'
|
|
|
|
CHOICES = [
|
|
(10000, '10 Mbps'),
|
|
(100000, '100 Mbps'),
|
|
(1000000, '1 Gbps'),
|
|
(10000000, '10 Gbps'),
|
|
(25000000, '25 Gbps'),
|
|
(40000000, '40 Gbps'),
|
|
(100000000, '100 Gbps'),
|
|
(200000000, '200 Gbps'),
|
|
(400000000, '400 Gbps'),
|
|
(1544, 'T1 (1.544 Mbps)'),
|
|
(2048, 'E1 (2.048 Mbps)'),
|
|
]
|
|
|
|
|
|
class CircuitPriorityChoices(ChoiceSet):
|
|
key = 'CircuitGroupAssignment.priority'
|
|
|
|
PRIORITY_PRIMARY = 'primary'
|
|
PRIORITY_SECONDARY = 'secondary'
|
|
PRIORITY_TERTIARY = 'tertiary'
|
|
PRIORITY_INACTIVE = 'inactive'
|
|
|
|
CHOICES = [
|
|
(PRIORITY_PRIMARY, _('Primary')),
|
|
(PRIORITY_SECONDARY, _('Secondary')),
|
|
(PRIORITY_TERTIARY, _('Tertiary')),
|
|
(PRIORITY_INACTIVE, _('Inactive')),
|
|
]
|