Patient schreibgeschützt #29

This commit is contained in:
gw3000 2023-07-18 19:28:15 +02:00
parent 12a4b236ed
commit 2c4d284708
4 changed files with 117 additions and 4 deletions

View file

@ -2,9 +2,10 @@ from django.urls import path
from .views import (
bird_all,
bird_help,
bird_create,
bird_delete,
bird_help,
bird_inactive,
bird_recover,
bird_recover_all,
bird_single,
@ -12,6 +13,7 @@ from .views import (
urlpatterns = [
path("all/", bird_all, name="bird_all"),
path("inactive/", bird_inactive, name="bird_inactive"),
path("create/", bird_create, name="bird_create"),
path("delete/<id>", bird_delete, name="bird_delete"),
path("help/", bird_help, name="bird_help"),