From 6ce179bd600079d6241efcfd9175d9bb7465c8dd Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Mon, 1 Apr 2024 19:01:17 +0200 Subject: [PATCH] Fix important information for volunteers Signed-off-by: Emmy D'Anello --- registration/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"),