mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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')
|
|
]
|