diff --git a/gestioncof/views.py b/gestioncof/views.py index 5a665860..5b0cf7ec 100644 --- a/gestioncof/views.py +++ b/gestioncof/views.py @@ -390,7 +390,7 @@ def registration(request): if 'password1' in request_dict or 'password2' in request_dict: user_form = RegistrationPassUserForm(request_dict) else: - user_form = RegistrationUserForm + user_form = RegistrationUserForm(request_dict) profile_form = RegistrationProfileForm(request_dict) events = Event.objects.filter(old=False).all() event_formset = EventFormset(events=events, data=request_dict,