Where is Django admin read-only read?

I read in How can I CHANGE django to create a "view" permission? that Django 1.2 cames with read permission for admin models. Where do I set this parameter? It is not found as permission in the auth application.

thank

+3
source share
1 answer

You need to follow the steps described in the linked answer. Element 1.2 mentioned in the article concerns the addition of an option editable=Falseto the model field, which displays a field that is not editable in the administrator interface for all users.

, django, django, , django ADMINS. CRUD , . .

+1

All Articles