9 lines
304 B
Python
9 lines
304 B
Python
from django.conf import settings
|
|
|
|
#Theme options are:
|
|
#amro, bec, bec-green, blue, default, djime-cerulean, drastic-dark,
|
|
#kathleene, olive, orange, red, reidb-greenish, warehouse
|
|
|
|
THEME = getattr(settings, 'WEB_THEME', 'default')
|
|
ENABLE_SCROLL_JS = getattr(settings, 'WEB_THEME_ENABLE_SCROLL_JS', True)
|