Opened 16 years ago

Closed 16 years ago

#7024 closed (duplicate)

ModelForm initial value is handled wrong

Reported by: Martín Conte Mac Donell <Reflejo@…> Owned by: nobody
Component: contrib.admin Version: newforms-admin
Severity: Keywords: initial
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 add_view is called with some initial value (when request.GET isn't null); add_view is instancing ModelForm with initial=request.GET which is wrong since values of QueryDict are list.

Actually BaseForm is trying to find something like [u'value'] in DB.

I think it should be a dictionary instead. (see patch below)

Attachments (1)

newforms-admin.patch (659 bytes ) - added by Martín Conte Mac Donell <Reflejo@…> 16 years ago.

Download all attachments as: .zip

Change History (2)

by Martín Conte Mac Donell <Reflejo@…>, 16 years ago

Attachment: newforms-admin.patch added

comment:1 by Brian Rosner, 16 years ago

Resolution: duplicate
Status: newclosed

Duplicate of #6938. Please search Trac before opening a new ticket. Thanks :)

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