shimatta-kenkyusho/shimatta_kenkyusho/parts/forms.py

9 lines
232 B
Python
Raw Normal View History

from django import forms
class MyTestForm(forms.Form):
pass
class AddSubStorageForm(forms.Form):
storage_name = forms.CharField(label="storage_name", initial='')
responsible = forms.CharField(label='responsible_user')