Guest User

Untitled

a guest
Dec 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. from django import forms
  2.  
  3.  
  4. class CartAddProductForm(forms.Form):
  5. quantity = forms.IntegerField(min_value=1, initial=1)
  6. update = forms.BooleanField(required=False, initial=False, widget=forms.HiddenInput)
Add Comment
Please, Sign In to add comment