mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
* move more paths to basic path * changed url route to only match fully - fixed test * revert path changes on labelprint pages * fix not found/redirect * revert test change
16 lines
284 B
Python
16 lines
284 B
Python
"""URL lookup for Build app."""
|
|
|
|
from django.urls import include, path
|
|
|
|
from . import views
|
|
|
|
|
|
build_urls = [
|
|
|
|
path('<int:pk>/', include([
|
|
path('', views.BuildDetail.as_view(), name='build-detail'),
|
|
])),
|
|
|
|
path('', views.BuildIndex.as_view(), name='build-index'),
|
|
]
|