fixed lineup submission and added message display

This commit is contained in:
2021-12-11 11:15:59 -06:00
parent 1b7a291b5d
commit e0764ce479
4 changed files with 40 additions and 1 deletions

View File

@@ -25,6 +25,9 @@ class Positioning(models.Model):
class Meta:
unique_together = ('player', 'event',)
def __str__(self):
return f"{self.player}; {self.event};"
class Availability(models.Model):
YES = 2
MAYBE = 1