Question

My aim is to redirect the Users from the login page of the admin page in Django. The plan was to go for the login view and change the redirect direction to the template I'm aiming to use. But to be honest I don't know where to find that view. When you have cooler ideas on how to redirect from the login page to a custom template with a custom view please write it down :D Thank you for every help :)

Was it helpful?

Solution

You can use the LOGIN_REDIRECT_URL setting to redirect your user after they login. You won't be able to specify a particular view, only an URL string like /foo/bar/.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top