diff --git a/dr_botzo/dr_botzo/settings.py b/dr_botzo/dr_botzo/settings.py index a7b28bd..055a5dd 100644 --- a/dr_botzo/dr_botzo/settings.py +++ b/dr_botzo/dr_botzo/settings.py @@ -35,6 +35,7 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'django.contrib.sites', 'django_extensions', 'adminplus', 'rest_framework', @@ -108,6 +109,10 @@ USE_L10N = True USE_TZ = True +# site ID, for anything that needs it (e.g. referring to the domain) +SITE_ID = 1 + + # templates TEMPLATE_DIRS = ( os.path.join(BASE_DIR, 'templates'),