- changed status to invalid
Debug False vs True
Issue #316
invalid
When setting debug to False in the local_settings file, some pages do not display properly
When setting debug back to True the page displays correctly,
This is on the py34 branch, in either WSL or python 3.6.4
Comments (1)
-
- Log in to comment
This isn't a bug. Django only serves the static media files (javascript, images, css) with DEBUG=True for convenience during development. When DEBUG=False (during deployment) you would generally have a proper webserver handle those files.