This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
from django.urls import path
|
||||
|
||||
from backoffice.views import orders
|
||||
|
||||
urlpatterns = [
|
||||
path('', orders.OrderListView.as_view(), name='order_list'),
|
||||
path('<int:pk>/', orders.OrderDetailView.as_view(), name='order_detail'),
|
||||
path(
|
||||
'<int:pk>/shipping-status/',
|
||||
orders.OrderUpdateShippingStatusView.as_view(),
|
||||
name='order_update_shipping_status',
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user