1
0
mirror of https://github.com/django/django.git synced 2025-04-15 12:54:38 +00:00

[1.4.X] Fixed #18840 - Added a mentioned of the upload_to parameter to the ModelForm example in file uploads.

Backport of c6088bc91d from master
This commit is contained in:
Tim Graham 2012-09-01 15:38:44 -04:00
parent 92f7af3c36
commit c9f1a13f87

View File

@ -184,7 +184,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