mirror of
https://github.com/nikdoof/django-eveigb.git
synced 2025-12-16 19:33:42 +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
|