mirror of
https://github.com/Sosokker/Inventory-Management-System.git
synced 2025-12-20 07:54:04 +01:00
9 lines
261 B
Python
9 lines
261 B
Python
from django.urls import path
|
|
|
|
from transaction.views import CustomerOrderView, TransferListView
|
|
|
|
urlpatterns = [
|
|
path('order/', CustomerOrderView.as_view(), name='customer-order'),
|
|
path('transfers/', TransferListView.as_view(), name='transfer-list'),
|
|
]
|