Hi,
I've noticed another problem which falls into topic raised by Tom
Mezzanine changed the login stuff and is using Django login somewhere here I think
On my site running Mezzanine I've got:
- Panel for logged in clients (using default django auth views)
- Admin panel (Mezzanine also using default auth views)
Before that change everything worked as I've expected:
- Users were going to /panel/ and after login they were redirected to /panel/ or /panel/sub-page/ set with LOGIN_REDIRECT_URL
- Admins were going to /admin/ and after login they were redirected to /admin/
- For both cases the direct link to subpages like also worked. After passing login form users were redirected to initial requested page.
Now everything based on Django default login actions redirects to admin. Looks like Mezzanine is also overwriting this stuff
I wanted to dive into it and see if I could make some working commits for it but as someone raised this one before I wanted to throw my 5 cents in now.
Maybe Steve can say something about how to deal with that and what's the intention in those changes?
...or maybe somethings wrong with my setup :)
I'm guessing this is an issue with the Mezzanine admin login form as the Django admin login will (apparently) normally ignore the LOGIN_REDIRECT_URL setting as it is intended for user-based login and not admin-based login.