X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/9e81338188b8277ee838ac19a083c552320097ef..2f8f1efa5214444b2e867bde2a6f5297d1f3caea:/sommitrealweird/settings.py diff --git a/sommitrealweird/settings.py b/sommitrealweird/settings.py index 70594da..67b8f32 100644 --- a/sommitrealweird/settings.py +++ b/sommitrealweird/settings.py @@ -40,11 +40,12 @@ USE_I18N = True MEDIA_ROOT = os.path.join(topdir, 'media') + os.sep MEDIA_URL = '/media/' +STATIC_ROOT = '/usr/lib/python3/dist-packages/django/contrib/admin/static/' STATIC_URL = '/static/' import random import string -key_chars = "%s%s%s" % (string.letters, string.digits, '+-()_#~') +key_chars = "%s%s%s" % (string.ascii_letters, string.digits, '+-()_#~') SECRET_KEY = [random.choice(key_chars) for a in range(0,50)] CACHES = { @@ -73,6 +74,7 @@ TEMPLATES = [ 'OPTIONS': { 'context_processors': [ 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', 'django.template.context_processors.debug', 'django.template.context_processors.i18n', 'django.template.context_processors.media',