Added GTIN product storage and remote service integration
This commit is contained in:
7
asset/forms.py
Normal file
7
asset/forms.py
Normal file
@@ -0,0 +1,7 @@
|
||||
from django import forms
|
||||
|
||||
class AssetForm(forms.Form):
|
||||
named_id = forms.CharField(label='Asset named ID', max_length=30)
|
||||
description = forms.CharField(label='Description', max_length=250)
|
||||
color = forms.CharField(label='Color', max_length=20)
|
||||
container_type = forms.ChoiceField(label='Container Type', )
|
||||
Reference in New Issue
Block a user