bornhack-website/shop/forms.py
Thomas Steen Rasmussen 62fe63bd03 switch to a regular form
2016-05-12 19:10:46 +02:00

9 lines
143 B
Python

from django import forms
from .models import Order
class CheckoutForm(forms.Form):
# no fields here, just three submit buttons
pass