Changes between Version 2 and Version 3 of Ticket #18597, comment 5
- Timestamp:
- Mar 25, 2021, 3:18:17 AM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18597, comment 5
v2 v3 1 1 Transfering my concerns from the duplicate issue. I there is some code cleanup needed before attempting to fix this. 2 2 This will at least allow people to extend existing base classes to create custom inlines that can do this ( facilitating the feature in the core framework is secondary) 3 This would help support prefetching configuration on parent admin's queryset. 4 This is not sufficient to support prefetching since there are multiple (I have found at least 3) instances in inline admin and inline formset where `self.get_queryset()[i]` paradigm is used. 3 It is not sufficient to just use parent manager since there are multiple (I have found at least 3) instances in inline admin and inline formset where `self.get_queryset()[i]` paradigm is used. 5 4 6 5 At least perform some code cleanup?