From c308c8ce32eaf212172d9b5df82fbe655a08c37d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Perrin?= Date: Wed, 28 Sep 2016 21:36:52 +0100 Subject: [PATCH] Enable the quotes app --- djsite/settings.py | 3 ++- djsite/urls.py | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/djsite/settings.py b/djsite/settings.py index fcfa6fc..d81d8bc 100644 --- a/djsite/settings.py +++ b/djsite/settings.py @@ -37,6 +37,7 @@ INSTALLED_APPS = ( 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', + 'quotes', ) MIDDLEWARE_CLASSES = ( @@ -87,7 +88,7 @@ DATABASES = { LANGUAGE_CODE = 'en-us' -TIME_ZONE = 'UTC' +TIME_ZONE = 'Europe/London' USE_I18N = True diff --git a/djsite/urls.py b/djsite/urls.py index 8baa900..b325b2a 100644 --- a/djsite/urls.py +++ b/djsite/urls.py @@ -18,4 +18,5 @@ from django.contrib import admin urlpatterns = [ url(r'^admin/', include(admin.site.urls)), + url(r'^quotes/', include('quotes.urls')), ] -- 2.43.0