Fixed ReST error in docs/forms.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3475 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
e5b51925ac
commit
2ef762f8f4
|
@ -405,10 +405,10 @@ Here's a simple function that might drive the above form::
|
||||||
form = forms.FormWrapper(manipulator, new_data, errors)
|
form = forms.FormWrapper(manipulator, new_data, errors)
|
||||||
return render_to_response('contact_form.html', {'form': form})
|
return render_to_response('contact_form.html', {'form': form})
|
||||||
|
|
||||||
``FileField``s and ``ImageField``s
|
``FileField`` and ``ImageField`` special cases
|
||||||
==================================
|
==============================================
|
||||||
|
|
||||||
Dealing with ``FileField``s and ``ImageField``s is a little more
|
Dealing with ``FileField`` and ``ImageField`` objects is a little more
|
||||||
complicated.
|
complicated.
|
||||||
|
|
||||||
First, you'll need to make sure that your ``<form>`` element correctly defines
|
First, you'll need to make sure that your ``<form>`` element correctly defines
|
||||||
|
|
Loading…
Reference in New Issue