|
|
|
|
@ -7,7 +7,7 @@ class PlayerRegistration(models.Model): |
|
|
|
|
team_registration = models.ForeignKey(TeamRegistration, on_delete=models.CASCADE) |
|
|
|
|
first_name = models.CharField(max_length=50, blank=True) |
|
|
|
|
last_name = models.CharField(max_length=50, blank=True) |
|
|
|
|
licence_id = models.CharField(max_length=20, null=True, blank=True) |
|
|
|
|
licence_id = models.CharField(max_length=50, null=True, blank=True) |
|
|
|
|
rank = models.IntegerField(null=True, blank=True) |
|
|
|
|
#has_paid = models.BooleanField(default=False) |
|
|
|
|
#unranked = models.BooleanField(default=False) |
|
|
|
|
|