Change party start to 21h
This commit is contained in:
parent
39a2d309b5
commit
55f22f2250
1 changed files with 2 additions and 2 deletions
|
@ -922,8 +922,8 @@ def account_read_json(request, trigramme):
|
|||
alcohol_density = 0.8
|
||||
now = timezone.localtime(timezone.now())
|
||||
# une soirée va de XXh à 06h
|
||||
if time(18) <= now.time() or now.time() <= time(6):
|
||||
begin_time = datetime.combine(now.date(), time(18))
|
||||
if time(21) <= now.time() or now.time() <= time(6):
|
||||
begin_time = datetime.combine(now.date(), time(21))
|
||||
# si on est après minuit, il faut retrancher un jour
|
||||
if now.time() <= time(6):
|
||||
begin_time -= timedelta(days=1)
|
||||
|
|
Loading…
Reference in a new issue