Opened 18 years ago

Closed 17 years ago

#2328 closed defect (wontfix)

[patch] admin does not allow omitting fields in Admin.fields list

Reported by: marcink@… Owned by: Adrian Holovaty
Component: contrib.admin Version: dev
Severity: normal Keywords:
Cc: marcink@… Triage Stage: Unreviewed
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I ran into this trying to do something in similar vein to Luke Holt's fields-varying-with-user
hack.

The admin app assumes that all of the model's fields are present on the edit page, so
if you don't put a field somewhere in Model.Admin.fields then Django will try to set it
to null every time you try to modify an instance through the admin interface. I fixed this
by changing admin's change_stage function to create follow parameter for the ChangeManipulator
using values from Model.Admin.fields lists.

Not fully tested yet, I'm putting the patch here hoping that someone will let me know if this
is a bad idea.

Attachments (1)

diff_follow_in_admin.txt (782 bytes ) - added by marcink@… 18 years ago.

Download all attachments as: .zip

Change History (3)

by marcink@…, 18 years ago

Attachment: diff_follow_in_admin.txt added

comment:1 by anonymous, 18 years ago

Cc: marcink@… added

comment:2 by Simon G. <dev@…>, 17 years ago

Resolution: wontfix
Status: newclosed

Thanks for the patch marcink, but I'm marking this as wontfix - the newforms admin should fix this.

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