JourneyJoker/frontend/context_processors.py

6 lines
104 B
Python
Raw Normal View History

from django.conf import settings
def demo(request):
return {
"DEBUG": settings.DEBUG,
}