1👍
This part of the official docs would be helpful
Try this in your urls.py
urlpatterns = [
path('admin/', admin.site.urls),
path('', home, name='home'),
path('about/', contact, name='contact'),
]
- [Answered ]-My code keeps showing me this error 404: the current path,get, didn't match any of these
Source:stackexchange.com