27jet 27 is not a registered namespace

Solutions on MaxInterview for 27jet 27 is not a registered namespace by the best coders in the world

showing results for - " 27jet 27 is not a registered namespace"
Salman
27 Oct 2018
1from django.contrib import admin
2from django.urls import path, include
3
4urlpatterns = [
5    path('jet/', include('jet.urls', 'jet')), # 'jet' is namespace
6    path('jet/dashboard/', include(('jet.dashboard.urls', 'jet-dashboard'))),
7    path('admin/', admin.site.urls),
8]
9