Added GTIN product storage and remote service integration

This commit is contained in:
2022-04-13 15:42:09 +02:00
parent f1dab1c0a1
commit 4da41fe1cd
8 changed files with 117 additions and 6 deletions

7
asset/forms.py Normal file
View 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', )