Private
Public Access
1
0

all the plumbing to let people select, drop, offer, coaching

This commit is contained in:
Sander Roosendaal
2019-02-17 10:36:59 +01:00
parent 5f8fd9315a
commit c4523ea03e
11 changed files with 193 additions and 16 deletions

View File

@@ -634,6 +634,12 @@ class PaidPlan(models.Model):
class CoachingGroup(models.Model):
name = models.CharField(default='group',max_length=30,null=True,blank=True)
def __unicode__(self):
return 'Coaching Group {id}: {name}'.format(
id = self.pk,
name = self.name
)
# Extension of User with rowing specific data
class Rower(models.Model):