who needs fallen

This commit is contained in:
gw3000 2023-06-07 20:16:38 +02:00
parent e296d6d9fe
commit 9628826781

View file

@ -3,7 +3,7 @@ from django.urls import path
from .views import bird_create, bird_all, bird_single
urlpatterns = [
path("create/", bird_create, name="fallen_bird_create"),
path("all/", bird_all, name="fallen_bird_all"),
path("<id>/", bird_single, name="fallen_bird_single"),
path("create/", bird_create, name="bird_create"),
path("all/", bird_all, name="bird_all"),
path("<id>/", bird_single, name="bird_single"),
]