Opened 15 years ago

Closed 15 years ago

Last modified 15 years ago

#10299 closed (duplicate)

Enhance FileField form field with "delete" checkbox when file is loaded

Reported by: Valera_Grishin Owned by: nobody
Component: Forms Version:
Severity: 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

Currently Django displays the FileField and ImageField with file upload HTML widget only. This allows for uploading the new file or image and overwritting already stored file or image with a newer version. But it doesn't give you an option to delete the uploaded file or image. To overcome this problem one must provide a separate CheckboxInput and handle its logic in a view specifically to delete the file.

So, the point is to enhance the FileField and ImageField widgets with checkbox which appear in HTML only when file or image is already loaded. The proposed label for checkbox is "Delete". When checkbox is ticked and new file is not provided the correspoding file (or image) must be deleted on server.

Change History (8)

comment:1 by Valera_Grishin, 15 years ago

Cc: valera.grishin@… added

comment:2 by Alex Gaynor, 15 years ago

Resolution: duplicate
Status: newclosed

This is a dupe of #7048.

comment:3 by Karen Tracey, 15 years ago

The title of #7048 specifically mentions "admin", thus it isn't immediately obvious that this broader issue is a dupe. It's quite possible the solution envisioned for #7048 will be general and useful/accessible outside of admin, but it would be nice, if that is the case, if that were made more clear. It isn't immediately obvious to me from a brief scan of that ticket.

comment:4 by Alex Gaynor, 15 years ago

Karen, I agree that it wasn't immediately obvious, however if you take a look at the patch it does appear that the new Field and Widgets are in the forms dir, so they darn well better be reusable ;).

comment:5 by Karen Tracey, 15 years ago

Yeah, if you read it closely the solution is for ModelForms in general. I updated the summary to reflect that.

comment:6 by Valera_Grishin, 15 years ago

Cc: valera.grishin@… removed
Resolution: duplicate
Status: closedreopened

comment:7 by Valera_Grishin, 15 years ago

Resolution: duplicate
Status: reopenedclosed

in reply to:  6 comment:8 by Valera_Grishin, 15 years ago

Replying to Valera_Grishin:
Is something wrong with Track? I only changed the cc, but didn't touch status and resolution. Why those changed too?

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