bornhack-website/shop/forms.py
Thomas Steen Rasmussen b942d674ef more work on shop
2016-05-13 08:36:56 +02:00

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