Configure read-only admin panel permission (do not delete, edit or add)

I want the end user to use the admin panel to see the created obejcts, but I do not want him to add, delete or edit the created object. But in the user settings of the django admin panel, only permissions are allowed to be added, deleted or edited. Is there any way to do this?

+4
source share
1 answer

You create an admin panel user using python manage.py runserver and go to the localhost accounts localhost:your_port/admin with an account, go to the user change user with active, superuser, administrator status

0
source

All Articles