Assistant: codex Assistant-Model: gpt-6-astra Assistant-Session: 01a092fe-13b1-7f12-ac74-7d258af4d79c
7 lines
178 B
Python
7 lines
178 B
Python
from django.conf import settings
|
|
|
|
|
|
def company_context(request):
|
|
if settings.NETKINGDOM_ENABLED:
|
|
return {'company_name': settings.COMPANY_DISPLAY_NAME}
|
|
return {}
|