Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have created user profiles for the user and already added

AUTH_PROFILE_MODULE = 'app.ModelName'

But when the user successfully logs in, he/she are redirected to /accounts/profile/ by default.

How to change this? I would like them to go /profile/ and have created a view for them.

def Profile(request):
    '''
    profile view
    '''
    return render(request,'profile.html')
share|improve this question

2 Answers

up vote 1 down vote accepted

Change the value of LOGIN_REDIRECT_URL in your settings.py.

share|improve this answer

Mh, anything else that could cause redirecting to /accounts/profile?

tried settings with: LOGIN_REDIRECT_URL = reverse('userprofile:home') and LOGIN_REDIRECT_URL = "/"

both send me to "/accounts/profile", after login.

(logging in through django-social-auth)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.