Fix next/next_page mess.
Review Request #4933 — Created Nov. 10, 2013 and submitted — Latest diff uploaded
Fix
next/next_pagemess.For representing the page to redirect to, the djblets auth code used
next_page, while django's auth usednext. Now that the login view and
decorators are entirely converted to use django's, we can convert these to use
next.There's still one instance of
next_pageused in the registration page. I
haven't yet looked to see how much of that page can be replaced with code
fromdjango.contrib.auth.
Verified that all the changed locations redirected to the login form with the
correct variable names set, and that logging in redirected to that page.