Opened 19 years ago
Closed 19 years ago
#954 closed defect (fixed)
An error in many-to-many raw_id_admin template, change mode
Description ¶
When many-to-many field edited, template, produced by main admin view uses pluralized name
{% if original.get_objects_list %} ... bla bla
Should be:
{% if original.get_object_list %} ... bla bla
Note:
See TracTickets
for help on using tickets.
(In [1489]) Fixed #954 -- Many-to-many raw_id_admin change page now displays original object(s) correctly. Thanks for reporting, mordaha