Limit hours when MAX_MINUTES_IN_A_ROW is in effect.

This commit is contained in:
Jim Driessen
2017-06-12 15:17:36 +02:00
parent a81d53853e
commit 43fe38404f
2 changed files with 8 additions and 2 deletions

View File

@ -121,7 +121,7 @@ AUTH_USER_MODEL = 'marietje.User'
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
TIME_ZONE = 'Europe/Amsterdam'
USE_I18N = True
@ -144,4 +144,8 @@ BERTHA_HOST = ('hardcoding.nl', 1819)
MAIL_FROM = 'marietje@hardcoding.nl'
MAX_MINUTES_IN_A_ROW = 20
# Time range (dependent on timezone specified) when MAX_MINUTES_IN_A_ROW is in effect.
LIMIT_HOURS = (12, 16)