14 lines
399 B
Python
14 lines
399 B
Python
from django import forms
|
|
from django.forms import widgets
|
|
|
|
|
|
class CartItemForm(forms.Form):
|
|
"""
|
|
<input type="hidden" name="product" value="{{ product.pk }}">
|
|
<label for="quantity">{% translate 'Cantidad' %}</label>
|
|
<input id="quantity" type="number" name="quantity" value="1">
|
|
"""
|
|
|
|
product = forms.IntegerField(widget=widgets.HiddenInput)
|
|
quantity = forms.IntegerField()
|