2đź‘Ť
âś…
If you’ve already run syncdb
and the permissions are still not there, then you must not have your app listed in INSTALLED_APPS
. Otherwise, Django would automatically create them.
Additionally, you mention “nothing related to my ModelAdmin”. The permissions are created for models, not ModelAdmin
s. You may have just mistyped that, but if you’re looking for something related to the ModelAdmin
itself, that might be your problem.
👤Chris Pratt
- [Django]-405 POST method no allowed on heroku with django
- [Django]-Django DB table names, plural double s
- [Django]-How to always prefetch_related for a specific django model
- [Django]-Form action not working in django
Source:stackexchange.com