2
0
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:
Oliver
2018-04-15 10:08:44 +10:00
parent ff2082b156
commit 2c2db4fffb
4 changed files with 58 additions and 0 deletions

View File

@ -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)),