#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 , 16 years ago
Cc: | added |
---|
comment:2 by , 16 years ago
Resolution: | → duplicate |
---|---|
Status: | new → closed |
comment:3 by , 16 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 , 16 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 , 16 years ago
Yeah, if you read it closely the solution is for ModelForms in general. I updated the summary to reflect that.
follow-up: 8 comment:6 by , 16 years ago
Cc: | removed |
---|---|
Resolution: | duplicate |
Status: | closed → reopened |
comment:7 by , 16 years ago
Resolution: | → duplicate |
---|---|
Status: | reopened → closed |
comment:8 by , 16 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?
This is a dupe of #7048.