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

Bug fixes

- Part creation form was setting a field as HiddenInput() rather than its widget
- Added 'comment' file to FileAttachment model
This commit is contained in:
Oliver Walters
2019-05-01 09:40:49 +10:00
parent 7dd960a299
commit 7c11d917de
4 changed files with 26 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ class PartCategoryAdmin(ImportExportModelAdmin):
class PartAttachmentAdmin(admin.ModelAdmin):
list_display = ('part', 'attachment')
list_display = ('part', 'attachment', 'comment')
class BomItemAdmin(ImportExportModelAdmin):