mirror of
https://github.com/inventree/InvenTree.git
synced 2026-05-03 21:39:52 -05:00
9 lines
245 B
Python
9 lines
245 B
Python
from django.conf.urls import url, include
|
|
|
|
from . import views
|
|
|
|
# URL list for customer orders web interface
|
|
customer_orders_urls = [
|
|
# Top level order list
|
|
url(r'^.*$', views.CustomerOrderIndex.as_view(), name='customer-order-index'),
|
|
] |