When deleting an item from the Django Admin page, the delete form shows:
- Summary
- Objects
The Objects list shows all the objects and their related objects. The list is pretty huge and difficult to navigate when deleting multiple records.
Is there a way to hide the "Objects" list from the delete form in Django?
I have looked around, but the only option I have found is to override the template. Is it possible to achieve this through ModelAdmin?