Private
Public Access
1
0

fixed wrong email bug

This commit is contained in:
Sander Roosendaal
2018-12-11 13:20:39 +01:00
parent 3f91fad7d6
commit c8afa248bb
2 changed files with 3 additions and 3 deletions

View File

@@ -2474,7 +2474,7 @@ class VirtualRaceResult(models.Model):
# Virtual Race results (for keeping results when workouts are deleted)
class IndoorVirtualRaceResult(models.Model):
boatclasses = (type for type in mytypes.workouttypes if type[0] in mytypes.otetypes)
userid = models.IntegerField(default=0)
userid = models.IntegerField(default=0) # ID of rower object
teamname = models.CharField(max_length=80,verbose_name = 'Team Name',
blank=True,null=True)
username = models.CharField(max_length=150)