mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-22 05:12:22 -06:00
* Initial work on #13428 (QinQ) * Misc cleanup; add tests for Q-in-Q fields * Address PR feedback
This commit is contained in:
@@ -157,6 +157,17 @@ class VLANStatusChoices(ChoiceSet):
|
||||
]
|
||||
|
||||
|
||||
class VLANQinQRoleChoices(ChoiceSet):
|
||||
|
||||
ROLE_SERVICE = 's-vlan'
|
||||
ROLE_CUSTOMER = 'c-vlan'
|
||||
|
||||
CHOICES = [
|
||||
(ROLE_SERVICE, _('Service'), 'blue'),
|
||||
(ROLE_CUSTOMER, _('Customer'), 'orange'),
|
||||
]
|
||||
|
||||
|
||||
#
|
||||
# Services
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user