2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-18 13:05:42 +00:00

Click on company image to edit it

This commit is contained in:
Oliver
2018-05-03 23:57:00 +10:00
parent e9be3e9e06
commit 17e6147c47
6 changed files with 43 additions and 5 deletions

View File

@ -23,3 +23,12 @@ class EditCompanyForm(HelperForm):
'is_supplier',
'notes'
]
class CompanyImageForm(HelperForm):
class Meta:
model = Company
fields = [
'image'
]