settings: fix documentation links

Documentation for Django 1.7 is not available online anymore.
This commit is contained in:
Mathieu Lirzin 2022-02-11 23:37:27 +01:00 committed by Frédéric Péters
parent b64a4e6c08
commit 631b5a20eb
1 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ from django.utils.translation import ugettext_lazy as _
BASE_DIR = os.path.dirname(os.path.dirname(__file__))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'r^(w+o4*txe1=t+0w*w3*9%idij!yeq1#axpsi4%5*u#3u&)1t'
@ -132,7 +132,7 @@ WSGI_APPLICATION = 'combo.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases
# https://docs.djangoproject.com/en/2.2/ref/databases/#postgresql-notes
DATABASES = {
'default': {
@ -141,7 +141,7 @@ DATABASES = {
}
# Internationalization
# https://docs.djangoproject.com/en/1.7/topics/i18n/
# https://docs.djangoproject.com/en/2.2/topics/i18n/
LANGUAGE_CODE = 'fr-fr'
@ -156,7 +156,7 @@ USE_TZ = True
LOCALE_PATHS = (os.path.join(BASE_DIR, 'combo', 'locale'),)
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATIC_URL = '/static/'