From 8c3ae338ea5c9cae5ccc56f8b28172d802b9384a Mon Sep 17 00:00:00 2001 From: quark Date: Tue, 22 Jul 2025 18:20:05 +0200 Subject: [PATCH] fix organizer field error --- apps/activity/forms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/activity/forms.py b/apps/activity/forms.py index 305c4f03..a865ece6 100644 --- a/apps/activity/forms.py +++ b/apps/activity/forms.py @@ -32,7 +32,7 @@ class ActivityForm(forms.ModelForm): def clean_organizer(self): organizer = self.cleaned_data['organizer'] if not organizer.note.is_active: - self.add_error('organiser', _('The note of this club is inactive.')) + self.add_error('organizer', _('The note of this club is inactive.')) return organizer def clean_date_end(self):