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

Replace PartAttachmentCreate form

This commit is contained in:
Oliver
2021-06-30 09:45:36 +10:00
parent 8c439e52fd
commit 238dccc071
4 changed files with 17 additions and 82 deletions

View File

@@ -18,7 +18,6 @@ part_related_urls = [
]
part_attachment_urls = [
url(r'^new/?', views.PartAttachmentCreate.as_view(), name='part-attachment-create'),
url(r'^(?P<pk>\d+)/edit/?', views.PartAttachmentEdit.as_view(), name='part-attachment-edit'),
url(r'^(?P<pk>\d+)/delete/?', views.PartAttachmentDelete.as_view(), name='part-attachment-delete'),
]