From 476e3018a73db86cd5bcea861cfd6df771f918f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20Fuxj=C3=A4ger?= Date: Tue, 25 Apr 2023 10:03:32 +0200 Subject: [PATCH] Fixes #164 --- mos/settings/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mos/settings/common.py b/mos/settings/common.py index a878a70..600c380 100644 --- a/mos/settings/common.py +++ b/mos/settings/common.py @@ -52,6 +52,9 @@ # Local timezone TIME_ZONE = 'Europe/Vienna' +# Set first day of week to monday +FIRST_DAY_OF_WEEK = 1 + # Language code for this installation. All choices can be found here: # http://www.w3.org/TR/REC-html40/struct/dirlang.html#langcodes LANGUAGE_CODE = 'en-us'