InvenTree/InvenTree/supplier/urls.py
2017-03-28 23:21:26 +11:00

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')
]