Private
Public Access
1
0

working MPV

This commit is contained in:
Sander Roosendaal
2021-10-08 16:24:58 +02:00
parent b497449846
commit e604350e23
9 changed files with 401 additions and 54 deletions

View File

@@ -3473,6 +3473,10 @@ class VirtualRaceResult(models.Model):
return True
def save(self, *args, **kwargs):
if self.race and not self.course:
self.course = self.race.course
return super(VirtualRaceResult, self).save(*args, **kwargs)
def __str__(self):
rr = Rower.objects.get(id=self.userid)