Changes between Initial Version and Version 1 of Ticket #29835
- Timestamp:
- Oct 10, 2018, 2:40:59 AM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #29835 – Description
initial v1 1 Django admin class provides an ordering field which overrides (or defines) the order in which objects should be displayed. This is respected by the new autocomplete field alsoin foreign keys.1 Django admin class provides an ordering field which overrides the model meta ordering/defines the order in which objects should be displayed. This is respected by the new autocomplete field in foreign keys. 2 2 3 3 However the django admin list filter does not use the ordering from the related admin (if present) and only relies on the model meta ordering. This has a performance impact also as the model meta ordering applies to all queries, not just those for django admin.