FallenBirdyForm/rescuer/urls.py

9 lines
278 B
Python

from django.urls import path
from .views import rescuer_all, rescuer_create, rescuer_single
urlpatterns = [
path("all", rescuer_all, name="rescuer_all"),
path("<id>", rescuer_single, name="rescuer_single"),
path("create", rescuer_create, name="rescuer_create"),
]