Opened 16 years ago

Closed 16 years ago

Last modified 13 years ago

#7626 closed (fixed)

newforms docs: FileField used instead of ImageField

Reported by: charmless Owned by: nobody
Component: Documentation Version: dev
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

in the newforms docs for ImageField, it says:

ImageField
New in Django development version

Default widget: FileInput
Empty value: None
Normalizes to: An UploadedFile object that wraps the file content and file name into a single object.
Validates that file data has been bound to the form, and that the file is of an image format understood by PIL.
Error message keys: required, invalid, missing, empty, invalid_image
Using an ImageField requires that the Python Imaging Library is installed.

When you use a FileField on a form, you must also remember to bind the file data to the form.

On the last line, it should say ImageField instead, or mention that ImageField is a subclass of FileField.

Change History (2)

comment:1 by Malcolm Tredinnick, 16 years ago

Resolution: fixed
Status: newclosed

(In [7838]) Fixed #7626 -- Fixed a typo in the newforms docs.

comment:2 by Jacob, 13 years ago

milestone: 1.0 alpha

Milestone 1.0 alpha deleted

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