Linked Questions

Popular Questions

When I comment

urlpatterns = [
   path('admin/', admin.site.urls),
   #path('challenges/',include(challenges.urls))
]

it is working fine but for

urlpatterns = [
   path('admin/', admin.site.urls),
   path('challenges/',include(challenges.urls))
]

it is throwing an error

enter image description here

why the error is occurring when I am using

urlpatterns = [
   path('admin/', admin.site.urls),
   path('challenges/',include(challenges.urls))
]

Related Questions