I've been using Django since Django 1, and I've always used the same URL patterns (except when we switched from url to path).
Now I'm having an issue with 404 errors. I'll give you my Project URLS, and App URLS, and you tell me what am I doing wrong:
Project:
urlpatterns = [
path('b/', include('booking.urls')),
]
Booking App:
urlpatterns = [
path('book/<int:s>/<str:d>/', views.book, name="book"),
path('fb/', views.finalize_booking, name="finalize_booking"),
]
When I try to call {% url "finalize_booking" %}
, it gives me a 404 error.