eliu-fracta
Results
1
comments of
eliu-fracta
I solved it with the approach below. not sure if there's a better solution. ``` # forms.py class CustomAllAuthPasswordResetForm(AllAuthPasswordResetForm): def save(self, request, **kwargs): current_site = get_current_site(request) email = self.cleaned_data['email'] token_generator...