1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-11-03 08:58:47 +01:00

Fix dish form and add kitchen view

This commit is contained in:
Ehouarn
2025-10-31 17:47:11 +01:00
parent 6bf21b103f
commit 30a598c0b7
8 changed files with 120 additions and 23 deletions

View File

@@ -28,5 +28,5 @@ urlpatterns = [
path('activity/<int:activity_pk>/order/', views.OrderCreateView.as_view(), name='order_create'),
path('activity/<int:activity_pk>/orders/', views.OrderListView.as_view(), name='order_list'),
path('activity/<int:activity_pk>/orders/served', views.ServedOrderListView.as_view(), name='served_order_list'),
path('activity/orders/<int:pk>/delete/', views.OrderDeleteView.as_view(), name='order_delete'),
path('activity/<int:activity_pk>/kitchen/', views.KitchenView.as_view(), name='kitchen'),
]