how to solve this problem ? "You don't have permission to edit anything. " in django

django

Solution

Try adding the line admin.autodiscover() to your main urls.py, making sure to do from django.contrib import admin first.

see this answer

Problem

i created a superuser account , but when I log in with it , i can't edit any of the installed applications ! how can I grant permissions for this user to allow editing applications ??

Original source

Related problems