Private
Public Access
1
0

added race breadcrumbs

This commit is contained in:
Sander Roosendaal
2018-11-27 22:00:04 +01:00
parent 1d2e1cb73f
commit 7c1b0626f9
3 changed files with 182 additions and 7 deletions

View File

@@ -2462,7 +2462,7 @@ class IndoorVirtualRaceResult(models.Model):
u2 = rr.user.last_name,
)
if self.teamname:
return u'Entry for {n} for "{r}" in {c} with {t} ({s})'.format(
return u'Entry for {n} for "{r}" on {c} with {t} ({s})'.format(
n = name,
r = self.race,
t = self.teamname,
@@ -2470,7 +2470,7 @@ class IndoorVirtualRaceResult(models.Model):
s = self.sex,
)
else:
return u'Entry for {n} for "{r}" in {c} ({s})'.format(
return u'Entry for {n} for "{r}" on {c} ({s})'.format(
n = name,
r = self.race,
c = self.boatclass,