Patient schreibgeschützt #29
This commit is contained in:
parent
12a4b236ed
commit
2c4d284708
4 changed files with 117 additions and 4 deletions
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue