python - Multiple apps in Django admin -
i have no clue why users staff status don't see apps. superuser can see 3 apps installed:
- backend
- backoffice
- polls
as user staffstatus have backoffice available. each app did in admin.py:
from django.contrib import admin <appname>.models import <class1, class2, ...> ... ... admin.site.register(class1) admin.site.register(class2) ... admin.site.register(classn) here screenshot of permissions area:

where polls? backend? missing?
you need change permissions able view app. django doesn't have separate “view” permission.
Comments
Post a Comment