forked from DGNum/gestioCOF
10 lines
255 B
Python
10 lines
255 B
Python
from django.contrib.auth.context_processors import PermWrapper
|
|
|
|
|
|
def auth(request):
|
|
if hasattr(request, 'real_user'):
|
|
return {
|
|
'user': request.real_user,
|
|
'perms': PermWrapper(request.real_user),
|
|
}
|
|
return {}
|