8 lines
124 B
Python
8 lines
124 B
Python
from django import forms
|
|
from .models import Order
|
|
|
|
|
|
class AddToOrderForm(forms.Form):
|
|
quantity = forms.IntegerField()
|
|
|