Opened 19 years ago
Closed 19 years ago
#954 closed defect (fixed)
An error in many-to-many raw_id_admin template, change mode
Reported by: | mordaha | Owned by: | Adrian Holovaty |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
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