jazzband / django-configurations

A helper for organizing Django project settings by relying on well established programming patterns.
https://django-configurations.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
1.11k stars 144 forks source link

Remove TEMPLATE_DEBUG from settings? #216

Closed bittner closed 3 years ago

bittner commented 5 years ago

The test_project settings still have a TEMPLATE_DEBUG value. This is deprecated since Django 1.8 and should be replaced by the 'debug' option in the OPTIONS of a DjangoTemplates backend.

Has this been left in the test project on purpose, or should we remove it?

blueyed commented 5 years ago

Yes, it should be removed probably. Maybe the whole settings should be compared/synced with Django 2.1 or something similar then.

bittner commented 5 years ago

Relates to: #166, #184