mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
12 lines
238 B
Python
12 lines
238 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
|
|
# Display details of a supplier
|
|
url(r'^(?P<supplier_id>[0-9]+)/$', views.supplierDetail, name='detail'),
|
|
|
|
url(r'^$', views.index, name='index')
|
|
]
|