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