14 lines
383 B
Python
14 lines
383 B
Python
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',
|
|
),
|
|
]
|