little corrections

This commit is contained in:
gw3000 2023-06-19 21:59:45 +02:00
parent 166de02bdc
commit 129c1cfb49
3 changed files with 4 additions and 4 deletions

View file

@ -4,6 +4,6 @@ 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"),
path("<id>", rescuer_single, name="rescuer_single"),
]