Commit 5d9983d0 authored by Brian Rosner's avatar Brian Rosner
Browse files

Fixed #8857 -- Corrected ref in modelforms documentation and added ref to file...

Fixed #8857 -- Corrected ref in modelforms documentation and added ref to file upload documentation in form documentation. Thanks Kyle Fox and prairiedogg.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10837 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent e258961e
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -128,6 +128,12 @@ they went wrong.
See :ref:`ref-forms-api-bound-unbound` for further information on the
differences between bound and unbound forms.

Handling file uploads with a form
---------------------------------

To see how to handle file uploads with your form see
:ref:`binding-uploaded-files` for more information.

Processing the data from a form
-------------------------------

+1 −1
Original line number Diff line number Diff line
@@ -271,7 +271,7 @@ exactly the same way as any other ``forms`` form. For example, the
``is_valid()`` method is used to check for validity, the ``is_multipart()``
method is used to determine whether a form requires multipart file upload (and
hence whether ``request.FILES`` must be passed to the form), etc. See
:ref:`topics-forms-index` for more information.
:ref:`binding-uploaded-files` for more information.

Using a subset of fields on the form
------------------------------------