[Django]-How to show permissions to add or change a Django model in Group or user permission list on Admin site?

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 ModelAdmins. 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

3đź‘Ť

You should be able to do that. Try running python manage.py syncdb again.

👤dan-klasson

Leave a comment