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.
24 lines
496 B
24 lines
496 B
from django.conf import settings
|
|
|
|
|
|
def april(req):
|
|
if 'X-April' in req.headers:
|
|
try:
|
|
year = int(req.headers['X-April'])
|
|
return {'april': year}
|
|
except:
|
|
pass # Fall-back to regular behaviour
|
|
|
|
import datetime
|
|
today = datetime.date.today()
|
|
if today.day == 1 and today.month == 4:
|
|
return {'april': today.year}
|
|
return {}
|
|
|
|
|
|
def rozliseni(request):
|
|
ltp = settings.LOCAL_TEST_PROD
|
|
if request.user.is_superuser and ltp == "prod":
|
|
ltp = "su" + ltp
|
|
return {"LOCAL_TEST_PROD": ltp}
|
|
|
|
|