Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions docs/ref/settings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1651,7 +1651,7 @@ Default::
A list of handlers to use for uploading. Changing this setting allows complete
customization -- even replacement -- of Django's upload process.

See :doc:`/topics/files` for details.
See :ref:`file-upload-handlers` for details.

.. setting:: FILE_UPLOAD_MAX_MEMORY_SIZE

Expand All @@ -1661,7 +1661,7 @@ See :doc:`/topics/files` for details.
Default: ``2621440`` (i.e. 2.5 MB).

The maximum size (in bytes) that an upload will be before it gets streamed to
the file system. See :doc:`/topics/files` for details.
the file system. See :ref:`file-upload-handlers` for details.

See also :setting:`DATA_UPLOAD_MAX_MEMORY_SIZE`.

Expand Down Expand Up @@ -1732,7 +1732,7 @@ If ``None``, Django will use the standard temporary directory for the operating
system. For example, this will default to ``/tmp`` on \*nix-style operating
systems.

See :doc:`/topics/files` for details.
See :ref:`file-upload-handlers` for details.

.. setting:: FIRST_DAY_OF_WEEK

Expand Down Expand Up @@ -4037,6 +4037,7 @@ File uploads
------------
* :setting:`FILE_UPLOAD_HANDLERS`
* :setting:`FILE_UPLOAD_MAX_MEMORY_SIZE`
* :setting:`FILE_UPLOAD_DIRECTORY_PERMISSIONS`
* :setting:`FILE_UPLOAD_PERMISSIONS`
* :setting:`FILE_UPLOAD_TEMP_DIR`
* :setting:`MEDIA_ROOT`
Expand Down
2 changes: 2 additions & 0 deletions docs/topics/http/file-uploads.txt
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,8 @@ uploads:
instance (in a single field), for example, even if the custom widget is used
with a form field related to a model ``FileField``.

.. _file-upload-handlers:

Upload Handlers
===============

Expand Down
Loading