Skip to content

Commit 5d9983d

Browse files
committed
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
1 parent e258961 commit 5d9983d

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/topics/forms/index.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,12 @@ they went wrong.
128128
See :ref:`ref-forms-api-bound-unbound` for further information on the
129129
differences between bound and unbound forms.
130130

131+
Handling file uploads with a form
132+
---------------------------------
133+
134+
To see how to handle file uploads with your form see
135+
:ref:`binding-uploaded-files` for more information.
136+
131137
Processing the data from a form
132138
-------------------------------
133139

docs/topics/forms/modelforms.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ exactly the same way as any other ``forms`` form. For example, the
271271
``is_valid()`` method is used to check for validity, the ``is_multipart()``
272272
method is used to determine whether a form requires multipart file upload (and
273273
hence whether ``request.FILES`` must be passed to the form), etc. See
274-
:ref:`topics-forms-index` for more information.
274+
:ref:`binding-uploaded-files` for more information.
275275

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

0 commit comments

Comments
 (0)