new page and nav system
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
2026-04-03 21:03:52 +03:00
parent 65e029a417
commit c1230c0c86
6 changed files with 132 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ from . import views
app_name = 'backlogger'
urlpatterns = [
path('', views.item_list, name='list'),
path('live/', views.live, name='live'),
path('add/', views.item_add, name='add'),
path('<int:pk>/edit/', views.item_edit, name='edit'),
path('<int:pk>/delete/', views.item_delete, name='delete'),