allows blanks for position
This commit is contained in:
@@ -19,7 +19,7 @@ class Positioning(models.Model):
|
||||
('RF', 'RF'),
|
||||
('DH','DH')
|
||||
]
|
||||
position = models.CharField(choices=positions, default=None, max_length=2, null=True)
|
||||
position = models.CharField(choices=positions, default=None, max_length=2, null=True, blank=True)
|
||||
order = models.PositiveSmallIntegerField(default=0, null=True)
|
||||
|
||||
class Meta:
|
||||
|
||||
Reference in New Issue
Block a user