mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
11 lines
264 B
Python
11 lines
264 B
Python
from django.conf.urls import url
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<pk>[0-9]+)/?$', views.LocationDetail.as_view(), name='stocklocation-detail'),
|
|
|
|
url(r'^\?.*/?$', views.LocationList.as_view()),
|
|
|
|
url(r'^$', views.LocationList.as_view())
|
|
]
|