Skip to content

Commit 895d3c2

Browse files
committed
docs: Update references to Django docs
1 parent e8980ae commit 895d3c2

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Translators can provide translations for this application by becoming a collabor
4949

5050
### Translations for Developers
5151

52-
For more information about Django's translation framework, see https://docs.djangoproject.com/en/1.8/topics/i18n/translation/
52+
For more information about Django's translation framework, see https://docs.djangoproject.com/en/4.2/topics/i18n/translation/
5353

5454
If you add new text to the interface, ensure to wrap it in the relevant gettext blocks/functions.
5555

cove_project/settings.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
Generated by 'django-admin startproject' using Django 2.1.3.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/topics/settings/
7+
https://docs.djangoproject.com/en/4.2/topics/settings/
88
99
For the full list of settings and their values, see
10-
https://docs.djangoproject.com/en/2.1/ref/settings/
10+
https://docs.djangoproject.com/en/4.2/ref/settings/
1111
"""
1212

1313
import os
@@ -100,7 +100,7 @@
100100
}
101101

102102
# Password validation
103-
# https://docs.djangoproject.com/en/2.1/ref/settings/#auth-password-validators
103+
# https://docs.djangoproject.com/en/4.2/ref/settings/#auth-password-validators
104104

105105
AUTH_PASSWORD_VALIDATORS = [
106106
{
@@ -119,7 +119,7 @@
119119

120120

121121
# Internationalization
122-
# https://docs.djangoproject.com/en/2.1/topics/i18n/
122+
# https://docs.djangoproject.com/en/4.2/topics/i18n/
123123

124124
LANGUAGE_CODE = settings.LANGUAGE_CODE
125125
TIME_ZONE = settings.TIME_ZONE
@@ -132,7 +132,7 @@
132132
LOCALE_PATHS = (BASE_DIR / "cove_oc4ids" / "locale",)
133133

134134
# Static files (CSS, JavaScript, Images)
135-
# https://docs.djangoproject.com/en/2.1/howto/static-files/
135+
# https://docs.djangoproject.com/en/4.2/howto/static-files/
136136

137137
# We can't take STATIC_URL and STATIC_ROOT from cove settings,
138138
# ... otherwise the files appear under the BASE_DIR that is the Cove library install.

cove_project/wsgi.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
It exposes the WSGI callable as a module-level variable named ``application``.
55
66
For more information on this file, see
7-
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
7+
https://docs.djangoproject.com/en/4.2/howto/deployment/wsgi/
88
"""
99

1010
import os

0 commit comments

Comments
 (0)