mirror of
https://github.com/nikdoof/django-eveigb.git
synced 2025-12-17 19:49:22 +00:00
7 lines
135 B
Python
7 lines
135 B
Python
def igb(request):
|
|
ctx = {
|
|
'is_igb': request.is_igb,
|
|
'is_igb_trusted': request.is_igb_trusted,
|
|
}
|
|
return ctx
|