Files
empire/weirdlittleempire/forms.py
2021-02-23 23:00:01 +00:00

6 lines
174 B
Python

from shop.forms.checkout import CustomerForm as CustomerFormBase
class CustomerForm(CustomerFormBase):
field_order = ['salutation', 'first_name', 'last_name', 'email']