I'm trying to give a user limited access to the admin site.
I logged in as a superuser, and gave the user staff status and the permissions over a model: "can add", "can change" and "can delete".
The problem is the user can log in to the site, but sees this message:
If I give him superuser status he can edit anything, but I want to give him limited access. Is there another option I must check before he can receive rights? I'm using Django 1.6.1.



admin.autodiscover()in your urls.py? What Django version are you on? - Ion Scerbatiuc