From 10c564be2f0779e494c74dd8d9347097f4f138f7 Mon Sep 17 00:00:00 2001 From: Jens Kleineheismann Date: Wed, 24 Jan 2018 18:01:13 +0100 Subject: [PATCH] Switched off devel options. --- dav_events/config.py | 2 +- dav_events/forms/events.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dav_events/config.py b/dav_events/config.py index 9b8b127..03a30bf 100644 --- a/dav_events/config.py +++ b/dav_events/config.py @@ -2,7 +2,7 @@ from django.utils.translation import ugettext_lazy as _ # E-Mails -ENABLE_EMAIL_NOTIFICATIONS = True +ENABLE_EMAIL_NOTIFICATIONS = False EMAIL_SENDER = 'Jens Kleineheismann ' BASE_URL = 'http://localhost:8000' diff --git a/dav_events/forms/events.py b/dav_events/forms/events.py index 6c9d28a..52db119 100644 --- a/dav_events/forms/events.py +++ b/dav_events/forms/events.py @@ -14,7 +14,7 @@ from .. import models from .generic import ChainedForm logger = logging.getLogger(__name__) -DEVELOPMENT_INIT_FORMS = True +DEVELOPMENT_INIT_FORMS = False class EventCreateForm(ChainedForm):