mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
16 lines
310 B
Python
16 lines
310 B
Python
"""URL lookup for Build app."""
|
|
|
|
from django.urls import include, re_path
|
|
|
|
from . import views
|
|
|
|
|
|
build_urls = [
|
|
|
|
re_path(r'^(?P<pk>\d+)/', include([
|
|
re_path(r'^.*$', views.BuildDetail.as_view(), name='build-detail'),
|
|
])),
|
|
|
|
re_path(r'.*$', views.BuildIndex.as_view(), name='build-index'),
|
|
]
|