From d9ae7c6b372a005532720adc2e9b3597a87cd141 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Sat, 13 Nov 2010 03:55:06 +0000 Subject: [PATCH] Corrected default value for ADMIN_MEDIA_PREFIX in docs, and added info about how it integrates with staticfiles. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14551 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/ref/settings.txt | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 66c6e264af..b394cd75b0 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -49,13 +49,14 @@ models, views and template tags. ADMIN_MEDIA_PREFIX ------------------ -Default: ``'/media/'`` +Default: ``'/static/admin/'`` -The URL prefix for admin media -- CSS, JavaScript and images used by -the Django administrative interface. Make sure to use a trailing -slash, and to have this be different from the :setting:`MEDIA_URL` setting -(since the same URL cannot be mapped onto two different sets of -files). +The URL prefix for admin media -- CSS, JavaScript and images used by the Django +administrative interface. Make sure to use a trailing slash, and to have this be +different from the :setting:``MEDIA_URL`` setting (since the same URL cannot be +mapped onto two different sets of files). For integration with :doc:`staticfiles +`, this should be the same as +:setting:`STATICFILES_URL` followed by ``'admin/'``. .. setting:: ADMINS