1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-02 05:58:32 +02:00

Allow admins to create users outside registration period

This commit is contained in:
Emmy D'Anello
2025-03-05 18:57:01 +01:00
parent 905b96fbcf
commit fb10df77e5
3 changed files with 16 additions and 15 deletions

View File

@ -38,19 +38,6 @@ class SignupForm(UserCreationForm):
self.add_error("email", _("This email address is already used."))
return email
def clean(self):
# Check that registrations are opened
now = timezone.now()
if now < settings.REGISTRATION_DATES['open']:
self.add_error(None, format_lazy(_("Registrations are not opened yet. "
"They will open on the {opening_date:%Y-%m-%d %H:%M}."),
opening_date=settings.REGISTRATION_DATES['open']))
elif now > settings.REGISTRATION_DATES['close']:
self.add_error(None, format_lazy(_("Registrations for this year are closed since "
"{closing_date:%Y-%m-%d %H:%M}."),
closing_date=settings.REGISTRATION_DATES['close']))
return super().clean()
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.fields["first_name"].required = True