Web M&M
https://mam.matfyz.cz
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
269 B
12 lines
269 B
|
|
from datetime import datetime, date
|
|
|
|
def vzhled(request):
|
|
''' Podle casu prida do templatu, zdali je nebo neni noc '''
|
|
hodin = datetime.now().hour
|
|
if (hodin <= 6) or (hodin >= 20):
|
|
noc = True
|
|
else:
|
|
noc = False
|
|
return {'noc' : noc}
|
|
|
|
|