bornhack-website/src/shop/forms.py

7 lines
107 B
Python
Raw Normal View History

from django import forms
2016-05-12 16:16:25 +00:00
2016-05-13 06:36:56 +00:00
class AddToOrderForm(forms.Form):
quantity = forms.IntegerField(initial=1)
2016-05-13 06:36:56 +00:00