Ankit Jaiswal
Ankit Jaiswal

Reputation: 763

Custom views in Django admin panel

I am working 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.

Upvotes: 0

Views: 667

Answers (1)

lprsd
lprsd

Reputation: 87095

You can control who has access read/write/delete to what applications' data via the admin using permissions.

Upvotes: 2

Related Questions