mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +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'),
|
|
]
|