help description for birds

This commit is contained in:
gw3000 2023-07-07 18:24:22 +02:00
parent 52f80672eb
commit 4f9b6f9fb5
5 changed files with 38 additions and 22 deletions

View file

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