diff --git a/CONTRIBUTORS.rst b/CONTRIBUTORS.rst index da75267f6c..a634f5ceac 100644 --- a/CONTRIBUTORS.rst +++ b/CONTRIBUTORS.rst @@ -342,6 +342,7 @@ Contributors * Aidarbek Suleimenov * Matthew Linares * Asanka Lihiniyagoda +* David Beitey Translators =========== diff --git a/docs/getting_started/integrating_into_django.rst b/docs/getting_started/integrating_into_django.rst index 047c0223ce..649eae029a 100644 --- a/docs/getting_started/integrating_into_django.rst +++ b/docs/getting_started/integrating_into_django.rst @@ -47,6 +47,13 @@ Add a ``STATIC_ROOT`` setting, if your project does not have one already: .. code-block:: python STATIC_ROOT = os.path.join(BASE_DIR, 'static') + +Add ``MEDIA_ROOT`` and ``MEDIA_URL`` settings, if your project does not have these already: + +.. code-block:: python + + MEDIA_ROOT = os.path.join(BASE_DIR, 'media') + MEDIA_URL = '/media/' Add a ``WAGTAIL_SITE_NAME`` - this will be displayed on the main dashboard of the Wagtail admin backend: