From 2ef762f8f49f2e229d10856d976c78a657a22088 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 28 Jul 2006 02:42:44 +0000 Subject: [PATCH] Fixed ReST error in docs/forms.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@3475 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/forms.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/forms.txt b/docs/forms.txt index c1a43bc0d2..67408f3c5d 100644 --- a/docs/forms.txt +++ b/docs/forms.txt @@ -405,10 +405,10 @@ Here's a simple function that might drive the above form:: form = forms.FormWrapper(manipulator, new_data, errors) 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. First, you'll need to make sure that your ``
`` element correctly defines