kpsul/kfet/context_processors.py

28 lines
730 B
Python
Raw Normal View History

2016-09-01 00:45:44 +02:00
# -*- coding: utf-8 -*-
from __future__ import (absolute_import, division,
print_function, unicode_literals)
from builtins import *
from django.contrib.auth.context_processors import PermWrapper
2017-03-06 02:25:18 +01:00
from .views import KFET_OPEN, KFET_FORCE_CLOSE
2017-02-11 00:29:12 +01:00
def auth(request):
if hasattr(request, 'real_user'):
return {
'user': request.real_user,
'perms': PermWrapper(request.real_user),
}
return {}
2017-02-11 00:29:12 +01:00
def kfet_open(resquest):
(kfet_open, kfet_open_date) = KFET_OPEN()
2017-03-06 02:25:18 +01:00
kfet_force_close = KFET_FORCE_CLOSE()
2017-02-11 00:29:12 +01:00
return {
'kfet_open': kfet_open,
'kfet_open_date': kfet_open_date,
2017-03-06 02:25:18 +01:00
'kfet_force_close': kfet_force_close,
2017-02-11 00:29:12 +01:00
}