Alexandre Karpov
Alexandre Karpov
The problem is with this line: **path("activate//)/", views.account_activate, name="activate")** The problem is not obvious with console email emulator, if you copy and use the link as is. But the url...
This is the block we have here in account/views.py: ``` try: uid = force_text(urlsafe_base64_decode(uidb64)) user = Customer.objects.get(pk=uid) except (TypeError, ValueError, OverflowError, user.DoesNotExist): ``` same block is present in pre-refactorin lectures,...
I don't know, exactly, why the site keeps working, but once I've enabled debug logging server-side, there came in a flood of messages pointing to the same problem on lines...