summaryrefslogtreecommitdiff
path: root/program/templatetags/timeslots.py
blob: 9b6712a0aaa1362fbfea9973d5984ff002643f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from django import template

from datetime import datetime, time, timedelta

register = template.Library()


@register.simple_tag
def height(start, end):
    if start.year == 2020 and int(start.strftime('%V')) >= 5 and start.hour == 12 and start.minute == 0:
        return '30'
    else:
        return '%d' % ((end - start).seconds / 60)


@register.simple_tag
def height_until(end):
    start = datetime.combine(end.date(), time(6, 0))
    return '%d' % ((end - start).seconds / 60)


@register.simple_tag
def height_since(start):
    if start.time() < time(23, 59):
        end = datetime.combine(start.date() + timedelta(days=1), time(6, 0))
    else:
        end = datetime.combine(start.date(), time(6, 0))
    return '%d' % ((end - start).seconds / 60)