2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-08-17 17:11:09 +00:00

adding in url

This commit is contained in:
2021-05-15 00:56:14 +02:00
parent a1fa3315b1
commit 307a097ab4
2 changed files with 7 additions and 0 deletions

View File

@@ -120,6 +120,9 @@ part_urls = [
# Create a new part
url(r'^new/?', views.PartCreate.as_view(), name='part-create'),
# Upload a part
url(r'^import/', views.PartImport.as_view(), name='part-upload'),
# Create a new BOM item
url(r'^bom/new/?', views.BomItemCreate.as_view(), name='bom-item-create'),