edge: django.urls.exceptions.NoReverseMatch: 'djdt' is not a registered namespace

I followed all the instructions to get this deployed and when I run the server and connect using Google Chrome I get this error here. I am unsure as to how to fix this.

The debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error.

About this issue

  • Original URL
  • State: open
  • Created 8 years ago
  • Comments: 18 (1 by maintainers)

Most upvoted comments

Just make sure the following code inside the urls project file not the App url file

if settings.DEBUG: import debug_toolbar urlpatterns += [ url(r’^debug/', include(debug_toolbar.urls)), ]

This has something to do with the DebugToolbarMiddleware I believe

I followed the documentation and also get the same error. More or less new to Django, so this is frustrating.