update dependencies and upgrade code for django where needed/possible

This commit is contained in:
Laura Klünder 2022-04-03 16:33:43 +02:00
parent 0f4e699e37
commit 03437a3a40
67 changed files with 331 additions and 207 deletions

View file

@ -8,7 +8,7 @@ from contextlib import suppress
import sass
from django.contrib.messages import constants as messages
from django.utils.crypto import get_random_string
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _
config = configparser.RawConfigParser()
if 'C3NAV_CONFIG' in os.environ:
@ -141,6 +141,7 @@ DATABASES = {
'CONN_MAX_AGE': 0 if db_backend == 'sqlite3' else 120
}
}
DEFAULT_AUTO_FIELD = 'django.db.models.AutoField'
STATIC_URL = config.get('urls', 'static', fallback='/static/')
@ -407,6 +408,8 @@ MESSAGE_TAGS = {
}
MESSAGE_STORAGE = 'django.contrib.messages.storage.session.SessionStorage'
SILENCED_SYSTEM_CHECKS = ['debug_toolbar.W006']
loglevel = 'DEBUG' if DEBUG else 'INFO'
LOGGING = {