We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello! First of all THANK YOU for this wonderfull project! =)
I am trying to customize signup view in my own project.
views.py:
from account.views import SignupView as BaseSignupView class SignupView(BaseSignupView): def generate_username(self, form): pass def after_signup(self, form): super(SignupView, self).after_signup(form) print(self.request.user) # other code
self.request.user always return AnonymousUser. Is it possible in after_signup function to know user who successfully signup?
self.request.user
AnonymousUser
after_signup
The text was updated successfully, but these errors were encountered:
Yes you can display a message in the respective view :)
Sorry, something went wrong.
No branches or pull requests
Hello! First of all THANK YOU for this wonderfull project! =)
I am trying to customize signup view in my own project.
views.py:
self.request.user
always returnAnonymousUser
. Is it possible inafter_signup
function to know user who successfully signup?The text was updated successfully, but these errors were encountered: