# Method that pulls settings from the standard settings.py
# file so that you can append or override items.
def get_setting(setting):
    try:
        from . import settings  # Python 3
    except ImportError:
        import settings  # Python 2
    return getattr(settings, setting)

SECRET_KEY='0db97110a442d4dde680bbbc5b4e3ad3'
SITE_SETTINGS_KEY='f0b73ca3e1dca73e9cfebfa1a5ae5e33'

INSTALLED_APPS = get_setting('INSTALLED_APPS')
INSTALLED_APPS = ('attendance','blog',) + INSTALLED_APPS


INSTALLED_APPS += (
    'django.contrib.gis',
    'tendenci.apps.committees',
    'tendenci.apps.case_studies',
    'tendenci.apps.donations',
    'tendenci.apps.speakers',
    'tendenci.apps.staff',
    'tendenci.apps.studygroups',
    'tendenci.apps.videos',
    'tendenci.apps.testimonials',
    'tendenci.apps.social_services',
    # -- explorer block --
    'tendenci.apps.explorer_extensions',
    'explorer',
    # -- end of explorer block --