+1 vote
in Data Handling by

How can you limit admin access so that the objects can only be edited by those users who have created them?

1 Answer

0 votes
by

Django’s ModelAdmin class provides customization hooks using which, you can control the visibility and editability of objects in the admin. To do this, you can use the get_queryset() and has_change_permission().

Course Curriculum

Python Django Training and Certification

Weekday / Weekend Batches

Related questions

+1 vote
asked Apr 4, 2020 in Data Handling by amita rallin
+1 vote
asked Apr 4, 2020 in Data Handling by amita rallin
...