mirror of
https://github.com/jazzband/django-configurations.git
synced 2026-03-16 22:20:27 +00:00
Remove references to TEMPLATE_DEBUG
This setting is deprecated since Django 1.8.
This commit is contained in:
parent
a155ac54ad
commit
b75c8d7a7a
3 changed files with 0 additions and 3 deletions
|
|
@ -21,7 +21,6 @@ file:
|
||||||
|
|
||||||
class Dev(Base):
|
class Dev(Base):
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
TEMPLATE_DEBUG = DEBUG
|
|
||||||
|
|
||||||
class Prod(Base):
|
class Prod(Base):
|
||||||
TIME_ZONE = 'America/New_York'
|
TIME_ZONE = 'America/New_York'
|
||||||
|
|
|
||||||
|
|
@ -46,7 +46,6 @@ value:
|
||||||
|
|
||||||
class Dev(Configuration):
|
class Dev(Configuration):
|
||||||
DEBUG = values.BooleanValue(True)
|
DEBUG = values.BooleanValue(True)
|
||||||
TEMPLATE_DEBUG = values.BooleanValue(DEBUG)
|
|
||||||
|
|
||||||
See the list of :ref:`built-in value classes<built-ins>` for more information.
|
See the list of :ref:`built-in value classes<built-ins>` for more information.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,6 @@ class Base(Configuration):
|
||||||
# Django settings for test_project project.
|
# Django settings for test_project project.
|
||||||
|
|
||||||
DEBUG = values.BooleanValue(True, environ=True)
|
DEBUG = values.BooleanValue(True, environ=True)
|
||||||
TEMPLATE_DEBUG = DEBUG
|
|
||||||
|
|
||||||
ADMINS = (
|
ADMINS = (
|
||||||
# ('Your Name', 'your_email@example.com'),
|
# ('Your Name', 'your_email@example.com'),
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue