You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
447 B
Python
21 lines
447 B
Python
5 years ago
|
from django import forms
|
||
|
from core.models import UserShippingAddress
|
||
|
|
||
|
|
||
|
class UserShippingAddressForm(forms.ModelForm):
|
||
|
class Meta:
|
||
|
model = UserShippingAddress
|
||
|
fields = [
|
||
|
'address1',
|
||
|
'address2',
|
||
|
'city',
|
||
|
'state',
|
||
|
'country',
|
||
|
'zip'
|
||
|
]
|
||
|
|
||
|
labels = {
|
||
|
'address1': 'Address',
|
||
|
'address2': 'Address (additional info)'
|
||
|
}
|