diff --git a/docs/forms.txt b/docs/forms.txt index 2fbe373744..41ff285f54 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -404,6 +404,36 @@ Here's a simple function that might drive the above form:: errors = new_data = {} form = forms.FormWrapper(manipulator, new_data, errors) return render_to_response('contact_form.html', {'form': form}) + +``FileField``s and ``ImageField``s +================================== + +Dealing with for ``FileField`` and ``ImageField`` is a little more +complicated. + +First, you'll need to make sure that your ``