1👍
✅
Googling ‘standard Django debugging page’
Isn’t as effective as reading the Django source itself.
Look in base.py for code like this
from django.views import debug
That will provide you some hints as to how they do it.
Then you can look at django/views/debug.py for the “technical_404_response” view function. You can use this function in your code, also.
- [Answered ]-Url pattern in django template handling spaces in url arg
- [Answered ]-Django: Having arbitrary file access models
Source:stackexchange.com