Author: brosner Date: 2009-05-24 01:48:43 -0500 (Sun, 24 May 2009) New Revision: 10838
Modified: django/branches/releases/1.0.X/docs/topics/forms/index.txt django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt Log: [1.0.X] Fixed #8857 -- Corrected ref in modelforms documentation and added ref to file upload documentation in form documentation. Thanks Kyle Fox and prairiedogg. Backport of [10837] from trunk. Modified: django/branches/releases/1.0.X/docs/topics/forms/index.txt =================================================================== --- django/branches/releases/1.0.X/docs/topics/forms/index.txt 2009-05-24 06:46:02 UTC (rev 10837) +++ django/branches/releases/1.0.X/docs/topics/forms/index.txt 2009-05-24 06:48:43 UTC (rev 10838) @@ -128,6 +128,12 @@ 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 ------------------------------- Modified: django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt =================================================================== --- django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt 2009-05-24 06:46:02 UTC (rev 10837) +++ django/branches/releases/1.0.X/docs/topics/forms/modelforms.txt 2009-05-24 06:48:43 UTC (rev 10838) @@ -271,7 +271,7 @@ ``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 ------------------------------------ --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to django-updates@googlegroups.com To unsubscribe from this group, send email to django-updates+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---