Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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!

share|improve this question

2 Answers

You can set the default redirect url (on login) in your settings.py

LOGIN_REDIRECT_URL = "/admin/mymodel/"

https://docs.djangoproject.com/en/dev/ref/settings/?from=olddocs#login-redirect-url

share|improve this answer
That didn't work for me. It probably works for developer defined logins but not django.contrib.admin. I'm guessing that the contrib.admin page is providing a 'next' parameter. – Paul Jun 8 '11 at 10:31

Look at ticket 14510 . Seems django admin doesn't support LOGIN_REDIRECT_URL settings and you should subclass AdminSite.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.