a looke look
This commit is contained in:
parent
e72dcd86c5
commit
e16d6f3436
9 changed files with 43 additions and 7 deletions
|
@ -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"),
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue