6 lines
98 B
Python
6 lines
98 B
Python
|
from django.conf import settings
|
||
|
|
||
|
|
||
|
def app(request):
|
||
|
return {"APP_TITLE": settings.APP_TITLE}
|