6 lines
174 B
Python
6 lines
174 B
Python
from shop.forms.checkout import CustomerForm as CustomerFormBase
|
|
|
|
|
|
class CustomerForm(CustomerFormBase):
|
|
field_order = ['salutation', 'first_name', 'last_name', 'email']
|