Private
Public Access
1
0

improved filter form

This commit is contained in:
Sander Roosendaal
2018-06-08 10:44:42 +02:00
parent 5603235f56
commit cd3ee722e2
3 changed files with 90 additions and 13 deletions

View File

@@ -1641,10 +1641,11 @@ class VirtualRaceResult(models.Model):
u1 = rr.user.first_name,
u2 = rr.user.last_name,
)
return u'Entry for {n} for "{r}" in {d}'.format(
return u'Entry for {n} for "{r}" in {c} {d}'.format(
n = name,
r = self.race,
d = self.boattype,
c = self.boatclass,
)