ckeditor added and single bird help

This commit is contained in:
gw3000 2023-07-20 20:18:11 +02:00
parent a8196bc5c9
commit 371ecda4cc
7 changed files with 34 additions and 9 deletions

View file

@ -5,6 +5,7 @@ from .views import (
bird_create,
bird_delete,
bird_help,
bird_help_single,
bird_inactive,
bird_recover,
bird_recover_all,
@ -17,6 +18,7 @@ urlpatterns = [
path("create/", bird_create, name="bird_create"),
path("delete/<id>", bird_delete, name="bird_delete"),
path("help/", bird_help, name="bird_help"),
path("help/<id>", bird_help_single, name="bird_help_single"),
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"),