diff --git a/registration/models.py b/registration/models.py index 0a10fcf..8ed16ea 100644 --- a/registration/models.py +++ b/registration/models.py @@ -518,8 +518,8 @@ class VolunteerRegistration(Registration): text = _("

The draw of the solutions for the tournament {tournament} is planned on the " "{date:%Y-%m-%d %H:%M}. You can join it on this link.

") url = reverse_lazy("draw:index") - content = format_lazy(text, tournament=self.tournament.name, - date=localtime(self.tournament.solutions_draw), + content = format_lazy(text, tournament=tournament.name, + date=localtime(tournament.solutions_draw), url=url) informations.append({ 'title': _("Draw of solutions"),