mirror of
https://github.com/fergalmoran/dss.git
synced 2025-12-22 17:48:51 +00:00
9 lines
167 B
Python
Executable File
9 lines
167 B
Python
Executable File
from django.conf import settings
|
|
|
|
|
|
def dss_context(context):
|
|
return {
|
|
'DEBUG': settings.DEBUG,
|
|
'live_enabled': settings.LIVE_ENABLED
|
|
}
|