Init Django-SHOP

This commit is contained in:
2021-02-23 22:57:30 +00:00
parent 8842939839
commit b4a79a6890
109 changed files with 5734 additions and 160 deletions

View File

@@ -0,0 +1,5 @@
from shop.forms.checkout import CustomerForm as CustomerFormBase
class CustomerForm(CustomerFormBase):
field_order = ['salutation', 'first_name', 'last_name', 'email']