Commit c6088bc9 authored by Tim Graham's avatar Tim Graham
Browse files

Fixed #18840 - Added a mentioned of the upload_to parameter to the ModelForm...

Fixed #18840 - Added a mentioned of the upload_to parameter to the ModelForm example in file uploads.
parent 306d3487
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -183,7 +183,9 @@ Handling uploaded files with a model

If you're saving a file on a :class:`~django.db.models.Model` with a
:class:`~django.db.models.FileField`, using a :class:`~django.forms.ModelForm`
makes this process much easier. The file object will be saved when calling
makes this process much easier. The file object will be saved to the location
specified by the :attr:`~django.db.models.FileField.upload_to` argument of the
corresponding :class:`~django.db.models.FileField` when calling
``form.save()``::

    from django.http import HttpResponseRedirect