mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			426 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from utilities.choices import ChoiceSet
 | 
						|
 | 
						|
 | 
						|
#
 | 
						|
# Contacts
 | 
						|
#
 | 
						|
 | 
						|
class ContactPriorityChoices(ChoiceSet):
 | 
						|
    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'),
 | 
						|
    )
 |