Opened 16 years ago

Closed 16 years ago

Last modified 12 years ago

#7771 closed (fixed)

New validator code breaks ordering of ForeignKey fields

Reported by: Michael P. Jung Owned by: Brian Rosner
Component: Uncategorized Version: newforms-admin
Severity: Keywords: ordering, order_by, ForeignKey, r7929
Cc: mpjung@… Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description (last modified by Ramiro Morales)

Revision 7929 adds a validator code that can't handle orderings like ('bar__name',):

  (...)
  File "django/contrib/admin/sites.py", line 81, in register
    validate(admin_class, model)
  File "django/contrib/admin/validation.py", line 84, in validate
    _check_field_existsw('ordering[%d]' % idx, field)
  File "django/contrib/admin/validation.py", line 25, in _check_field_existsw
    return _check_field_exists(cls, model, opts, label, field)
  File "django/contrib/admin/validation.py", line 243, in _check_field_exists
    % (cls.__name__, label, field, model.__name__))
django.core.exceptions.ImproperlyConfigured: `Foo_Options.ordering[0]` refers to field `bar__name` that is missing from model `Foo`.

Change History (4)

comment:1 by Ramiro Morales, 16 years ago

Description: modified (diff)

comment:2 by Brian Rosner, 16 years ago

milestone: 1.01.0 alpha
Owner: changed from nobody to Brian Rosner
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:3 by Brian Rosner, 16 years ago

Resolution: fixed
Status: assignedclosed

(In [7931]) newforms-admin: Fixed #7771 -- Improved the validation check on the ordering field. Now takes '?' and 'field1field2' syntax into consideration. Thanks Michael Jung for catching this.

comment:4 by Jacob, 12 years ago

milestone: 1.0 alpha

Milestone 1.0 alpha deleted

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