Re: Unable to access URL's query string using request.GET['next']

2013-05-24 Thread Ariel Calzada
You can't see next variable after login because the view that process "login form" don't return the variable in any form. You can modify this view. Regards, Ariel Calzada Homepage: http://www.000paradox000.com Blog: http://blog.000paradox000.com "If I had asked people what they wanted, they woul

Re: Unable to access URL's query string using request.GET['next']

2013-05-24 Thread Felipe Coelho
2013/5/25 Amber Jain > Hello, > > I can't seem to access request.GET['next'] (from a URL with a query > string). Here's what I'm doing: > localhost:8000/dashboard/ points to dashboard() view but the dashboard() > view uses @login_required decorator. And so, if the user isn't logged in, > localhos

Unable to access URL's query string using request.GET['next']

2013-05-24 Thread Amber Jain
Hello, I can't seem to access request.GET['next'] (from a URL with a query string). Here's what I'm doing: localhost:8000/dashboard/ points to dashboard() view but the dashboard() view uses @login_required decorator. And so, if the user isn't logged in, localhost:8000/dashboard/ redirects to local