diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt
index 5b51e45..a90235c 100644
a
|
b
|
for :doc:`managing stored files </topics/files>`. It must end in a slash if set
|
1713 | 1713 | to a non-empty value. You will need to :ref:`configure these files to be served |
1714 | 1714 | <serving-uploaded-files-in-development>` in both development and production. |
1715 | 1715 | |
| 1716 | In order to use ``{{ MEDIA_URL }}`` in your templates, you must have |
| 1717 | ``'django.core.context_processors.media'`` in your |
| 1718 | :setting:`TEMPLATE_CONTEXT_PROCESSORS`. It's there by default, but be careful |
| 1719 | to include it if you override that setting and want this behavior. |
| 1720 | |
1716 | 1721 | Example: ``"http://media.example.com/"`` |
1717 | 1722 | |
1718 | 1723 | .. warning:: |