Opened 13 years ago

Closed 13 years ago

#16540 closed Bug (fixed)

rev16487 breaks InlineModelAdmin prepopulated_fields

Reported by: Matthias Kestenholz Owned by: nobody
Component: contrib.admin Version: dev
Severity: Release blocker Keywords:
Cc: Triage Stage: Ready for checkin
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: yes UI/UX: no

Description

There's a typo in [16487] breaking prepopulated_fields functionality:

js.extend(['urlify.js, prepopulate.min.js'])

should be

js.extend(['urlify.js', 'prepopulate.min.js'])

instead.

(django/contrib/admin/options.py#L1332 in current SVN trunk)

Change History (2)

comment:1 by Julien Phalip, 13 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Jannis Leidel, 13 years ago

Resolution: fixed
Status: newclosed

In [16574]:

Fixed #16540 -- Fixed typo in InlineModelAdmin introduced in r16487 that broke the prepopulated fields. Thanks, mk.

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