After a user has logged into the admin interface is it possible to redirect them to a specific page?
I want to redirect to the list of entries for a particular model.
I'm using Django 1.3
Cheers!
|
After a user has logged into the admin interface is it possible to redirect them to a specific page? I want to redirect to the list of entries for a particular model. I'm using Django 1.3 Cheers! |
|||
|
|
|
You can set the default redirect url (on login) in your settings.py
https://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#login-redirect-url |
|||
|
|
Look at ticket 14510 . Seems django admin doesn't support LOGIN_REDIRECT_URL settings and you should subclass AdminSite. |
|||
|
|