I have created a template for the 500 HTTP error.
I have inserted my template 500.html
in:
but I always get this error:
TemplateDoesNotExist: 500.html
I get the same problem for an HTTP 404 error.
Why?
You might need to specify the template directories in settings.py, if you haven't already.
e.g. in my settings.py, I have:
ROOTDIR = os.path.abspath(os.path.dirname(__file__))
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
# Always use forward slashes, even on Windows.
# Don't forget to use absolute paths, not relative paths.
ROOTDIR + '/logistics/templates',
)
Try to setDEBUG=True
in your settings file
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With