1👍
✅
Look at your urlpatterns
:
urlpatterns = [
path('admin/', admin.site.urls),
path('home', views.home),
]
You haven’t set the path for real "home" page, which should be ""
. Change it to:
urlpatterns = [
path('admin/', admin.site.urls),
path('', views.home),
]
And you will be fine. The first argument in parenthesis is real "value" that you need to provide just after the domain (http://localhost:8000/
with local service).
Source:stackexchange.com