mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-30 08:32:26 +00:00
24 lines
786 B
Python
24 lines
786 B
Python
from machines.models import Interface, Machine
|
|
from .settings import SITE_NAME
|
|
|
|
def context_user(request):
|
|
user = request.user
|
|
if user.is_authenticated():
|
|
interfaces = Interface.objects.filter(machine=Machine.objects.filter(user=user, active=True))
|
|
else:
|
|
interfaces = None
|
|
is_cableur = user.has_perms(('cableur',))
|
|
is_bureau = user.has_perms(('bureau',))
|
|
is_bofh = user.has_perms(('bofh',))
|
|
is_trez = user.has_perms(('trésorier',))
|
|
is_infra = user.has_perms(('infra',))
|
|
return {
|
|
'request_user': user,
|
|
'is_cableur': is_cableur,
|
|
'is_bureau': is_bureau,
|
|
'is_bofh': is_bofh,
|
|
'is_trez': is_trez,
|
|
'is_infra': is_infra,
|
|
'interfaces': interfaces,
|
|
'site_name': SITE_NAME,
|
|
}
|