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):