Custom views in Django admin panel
I am work开发者_StackOverflow社区ing on a Django project where I need to change almost half the features and the way Django admin manages the models. For e.g. I have to create an application and then create an administrator and assign that application such that this admin can manage only that particular application. The administrators would be created by the global administrator of the project using the admin panel.
Please suggest.
Thanks in advance.
You can control who has access read/write/delete to what applications' data via the admin using permissions.
精彩评论