[Answered ]-Add a debugging page to a Django project?

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.

👤S.Lott

1👍

You can use Django Debug Toolbar and enable it only for choosen IPs

👤tmg

Leave a comment