[Django]-What file or module actually generates "It worked" in Django tutorials?

7👍

The default 404 debug view, which handles requests that don’t match any configured url, recognizes that you’ve made no changes to your url configuration. Instead of a technical debug response, it shows you a nice welcome page.

The code can be found in django.views.debug.

👤knbk

Leave a comment