Opened 17 years ago

Closed 17 years ago

Last modified 13 years ago

#5673 closed (wontfix)

[enhancement] Admin interface only sort by the first ordering field in Meta class (in models)

Reported by: DXpublica@… Owned by: nobody
Component: contrib.admin Version: dev
Severity: Keywords: ordering Meta multiple-ordering
Cc: Triage Stage: Unreviewed
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

In any model, if we have multiple ordering:

class Meta:
      ordering = ['one_field', 'another_field']

admin mode only sort the model by the first field ('one_field' in example) and not only by all specified fields, as it were the right thing

It's not a bug (see discussion: http://groups.google.com/group/django-developers/browse_thread/thread/c74afae800fda0b9/7c744053660b8a82#7c744053660b8a82) but it could be an enhancement

Change History (4)

comment:1 by Malcolm Tredinnick, 17 years ago

Resolution: wontfix
Status: newclosed

Given the difficulties in making this work sensibly in the UI (which is the reason for the current behaviour), I'm going to close this ticket for now. If/when somebody comes up with code that implements the feature, they can open a ticket and attach their patch. Until then, though, having an open ticket about such an item is only going to fill up the list of open tickets. It's not something we're likely to work on as a priority.

comment:2 by anonymous, 17 years ago

You could mark as "open" and "another branch". With that, it does not annoy us and we remember it

Thansks,
Xan.

comment:3 by Luke Plant, 13 years ago

#11868 is a ticket which implements this.

comment:4 by samjacoby, 13 years ago

Related to #4926, I think.

Note: See TracTickets for help on using tickets.
Back to Top