Changes between Initial Version and Version 1 of Ticket #29835


Ignore:
Timestamp:
Oct 10, 2018, 2:40:59 AM (6 years ago)
Author:
Brillgen Developers
Comment:

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 also in foreign keys.
     1Django 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.
    22
    33However 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.
Back to Top