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:

enter image description here

where polls? backend? missing?

you need change permissions able view app. django doesn't have separate “view” permission.


Comments

Popular posts from this blog

html - Sizing a high-res image (~8MB) to display entirely in a small div (circular, diameter 100px) -

java - IntelliJ - No such instance method -

identifier - Is it possible for an html5 document to have two ids? -