mirror of
https://github.com/inventree/InvenTree.git
synced 2025-07-11 07:24:15 +00:00
Added "new part" feature
- Create a new part - Button provided on the "category" list page
This commit is contained in:
@ -54,6 +54,9 @@ part_detail_urls = [
|
||||
|
||||
# URL list for part web interface
|
||||
part_urls = [
|
||||
# Create a new part
|
||||
url(r'^create/?', views.PartCreate.as_view(), name='part-create'),
|
||||
|
||||
# Individual
|
||||
url(r'^(?P<pk>\d+)/', include(part_detail_urls)),
|
||||
|
||||
|
Reference in New Issue
Block a user