app is not a registered namespace django

Solutions on MaxInterview for app is not a registered namespace django by the best coders in the world

showing results for - "app is not a registered namespace django"
Philippine
10 Sep 2020
1# From: https://stackoverflow.com/a/41883421/3673842
2path('', include(('app_name.urls', 'app_name'), namespace='app_name'))
3
4# E.g. path('', include(('home.urls', 'home'), namespace='home'))