6 lines
104 B
Python
6 lines
104 B
Python
|
from django.conf import settings
|
||
|
|
||
|
def demo(request):
|
||
|
return {
|
||
|
"DEBUG": settings.DEBUG,
|
||
|
}
|