diff options
| -rw-r--r-- | example_project/local_settings.py.sample | 5 | ||||
| -rw-r--r-- | ishtar_common/context_processors.py | 2 | ||||
| -rw-r--r-- | ishtar_common/models.py | 2 | 
3 files changed, 7 insertions, 2 deletions
| diff --git a/example_project/local_settings.py.sample b/example_project/local_settings.py.sample index 28ab60ab7..763dcb938 100644 --- a/example_project/local_settings.py.sample +++ b/example_project/local_settings.py.sample @@ -26,6 +26,11 @@ DATABASES = {  ROOT_URLCONF = 'example_project.urls'  MEDIA_URL = 'http://mydomain/static/' +DEBUG = False +DEBUG_TOOLBAR = False +TEMPLATE_DEBUG = DEBUG +SQL_DEBUG = False +  # complete with host/domain names that this website can serve  ALLOWED_HOSTS = [] diff --git a/ishtar_common/context_processors.py b/ishtar_common/context_processors.py index 6701de546..1088f3fea 100644 --- a/ishtar_common/context_processors.py +++ b/ishtar_common/context_processors.py @@ -1,6 +1,6 @@  #!/usr/bin/env python  # -*- coding: utf-8 -*- -# Copyright (C) 2010-2012 Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-2013 Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet>  # This program is free software: you can redistribute it and/or modify  # it under the terms of the GNU Affero General Public License as diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 1cff9f8f5..79d72a697 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1,6 +1,6 @@  #!/usr/bin/env python  # -*- coding: utf-8 -*- -# Copyright (C) 2010-2012 Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet> +# Copyright (C) 2010-2013 Étienne Loks  <etienne.loks_AT_peacefrogsDOTnet>  # This program is free software: you can redistribute it and/or modify  # it under the terms of the GNU Affero General Public License as | 
