Add help text to VLAN model for Assignment Type

This commit is contained in:
Dillon Henschen 2023-06-05 01:11:59 -04:00
parent b21e45a1b5
commit 742d89a197

View File

@ -128,7 +128,8 @@ class VLAN(PrimaryModel):
verbose_name='Assignment Type', verbose_name='Assignment Type',
max_length=50, max_length=50,
choices=VLANAssignmentTypeChoices, choices=VLANAssignmentTypeChoices,
default=VLANAssignmentTypeChoices.VLAN_GROUP default=VLANAssignmentTypeChoices.VLAN_GROUP,
help_text="Determines whether the form should include a VLAN Group or a Site based on the selected option"
) )
site = models.ForeignKey( site = models.ForeignKey(
to='dcim.Site', to='dcim.Site',