a looke look

This commit is contained in:
gw3000 2023-06-10 16:45:36 +02:00
parent e72dcd86c5
commit e16d6f3436
9 changed files with 43 additions and 7 deletions

View file

@ -1,5 +1,8 @@
from django.urls import path
from .views import rescuer_single
from .views import rescuer_single, rescuer_all
urlpatterns = [path("<id>", rescuer_single, name="rescuer_single")]
urlpatterns = [
path("all", rescuer_all, name="rescuer_all"),
path("<id>", rescuer_single, name="rescuer_single"),
]