13 lines
225 B
Python
13 lines
225 B
Python
from django import forms
|
|
from .models import Order
|
|
|
|
|
|
class CheckoutForm(forms.Form):
|
|
# no fields here, just three submit buttons
|
|
pass
|
|
|
|
class AddToOrderForm(forms.Form):
|
|
# no fields, just a submit button
|
|
pass
|
|
|