Opened 17 years ago

Closed 17 years ago

#4759 closed (duplicate)

[newforms-admin] fixed a bug, admin class has no 'manager' attribute

Reported by: yi.codeplayer at gmail dot com Owned by: nobody
Component: contrib.admin Version: newforms-admin
Severity: Keywords:
Cc: Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

First you need Ticket #4587, so you has model._meta.admin ,
but admin class has no attribute named 'manager', and this patch fixed this.

-        self.lookup_choices = model._meta.admin.manager.distinct().order_by(f.name).values(f.name)
+        self.lookup_choices = model._meta.admin(model).queryset(request).distinct().order_by(f.name).values(f.name)

Attachments (1)

there_is_no_admin_manager.patch (715 bytes ) - added by yi.codeplayer at gmail dot com 17 years ago.
the patch itself.

Download all attachments as: .zip

Change History (2)

by yi.codeplayer at gmail dot com, 17 years ago

the patch itself.

comment:1 by jkocherhans, 17 years ago

Resolution: duplicate
Status: newclosed

#3973 and #4699 are duplicates. We'll use #4699 as the master for no particular reason.

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