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

Link to download a BOM template file

This commit is contained in:
Oliver Walters
2019-06-27 22:15:58 +10:00
parent 3085db44af
commit 2831ac55c4
5 changed files with 58 additions and 1 deletions

View File

@@ -74,6 +74,9 @@ part_urls = [
# Create a new BOM item
url(r'^bom/new/?', views.BomItemCreate.as_view(), name='bom-item-create'),
# Download a BOM upload template
url(r'^bom_template/?', views.BomUploadTemplate.as_view(), name='bom-upload-template'),
# Individual part
url(r'^(?P<pk>\d+)/', include(part_detail_urls)),