DEFAULT_TO_EMAIL = 'recipient@recipient.org' # default recipient, for your tests
EMAIL_SUBJECT_PREFIX = "[PREFIX]" # prefix title in email
SITE_TITLE = 'Your Site'
-SITE_TAGLINE = 'This is a Mezzo site'
\ No newline at end of file
+SITE_TAGLINE = 'This is a Mezzo site'
+
+THEME_APP = 'organization_themes.ircam-www-theme'
+THEME_FOLDER = 'ircam-www-theme'
if "local_settings" not in str(e):
raise e
+# Please define THEME_APP in local_settings
+INSTALLED_APPS.insert(1, THEME_APP)
+
+HOST_THEMES = [
+ ('example.com', THEME_APP),
+]
+
+# Please define THEME_FOLDER in local_settings
+LOCALE_PATHS += (os.path.join(PROJECT_ROOT, 'lib/mezzanine-organization-themes/organization_themes/' + THEME_FOLDER + '/locale/'),)
+
####################
# DYNAMIC SETTINGS #
pass
else:
set_dynamic_settings(globals())
+
+
+