phase4: implement player search filters, htmx results, and detail page
This commit is contained in:
@ -1,9 +1,10 @@
|
||||
from django.urls import path
|
||||
|
||||
from .views import PlayersHomeView
|
||||
from .views import PlayerDetailView, PlayerSearchView
|
||||
|
||||
app_name = "players"
|
||||
|
||||
urlpatterns = [
|
||||
path("", PlayersHomeView.as_view(), name="index"),
|
||||
path("", PlayerSearchView.as_view(), name="index"),
|
||||
path("<int:pk>/", PlayerDetailView.as_view(), name="detail"),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user