diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2023-02-10 00:05:04 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2023-02-10 00:05:04 +0000 |
commit | 709b720be9ee0abca7c4dbccb91dadb50da5725b (patch) | |
tree | d14b861940f40f2819b5aaf37e2e6c339287ffe2 /settings.py | |
parent | 19d9942676d56fa9289d0a24ec2c52c23437cf07 (diff) | |
download | troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.tar.gz troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.tar.bz2 troggle-709b720be9ee0abca7c4dbccb91dadb50da5725b.zip |
Update URLs to django documn version
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py index d21d396..938c024 100644 --- a/settings.py +++ b/settings.py @@ -26,7 +26,7 @@ GIT = "git" # command for running git # Note that this builds upon the django system installed # global settings in # django/conf/global_settings.py which is automatically loaded first. -# read https://docs.djangoproject.com/en/3.0/topics/settings/ +# read https://docs.djangoproject.com/en/dev/topics/settings/ # Build paths inside the project like this: os.path.join(BASE_DIR, ...) # BASE_DIR = os.path.dirname(os.path.dirname(__file__)) @@ -104,9 +104,9 @@ INSTALLED_APPS = ( FORM_RENDERER = "django.forms.renderers.TemplatesSetting" # Required to customise widget templates -# See the recommended order of these in https://docs.djangoproject.com/en/2.2/ref/middleware/ +# See the recommended order of these in https://docs.djangoproject.com/en/dev/ref/middleware/ # Note that this is a radically different onion architecture from earlier versions though it looks the same, -# see https://docs.djangoproject.com/en/2.0/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware +# see https://docs.djangoproject.com/en/dev/topics/http/middleware/#upgrading-pre-django-1-10-style-middleware # Seriously, read this: https://www.webforefront.com/django/middlewaredjango.html which is MUCH BETTER than the docs MIDDLEWARE = [ #'django.middleware.security.SecurityMiddleware', # SECURE_SSL_REDIRECT and SECURE_SSL_HOST # we don't use this |