bornhack-website/shop/forms.py

9 lines
143 B
Python
Raw Normal View History

from django import forms
2016-05-12 16:16:25 +00:00
from .models import Order
2016-05-12 17:10:46 +00:00
class CheckoutForm(forms.Form):
# no fields here, just three submit buttons
pass