You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

forms.py 270B

1234567891011
  1. from django.forms import ModelForm
  2. from django.db.models import get_model
  3. UserAddress = get_model('address', 'useraddress')
  4. class UserAddressForm(ModelForm):
  5. class Meta:
  6. model = UserAddress
  7. exclude = ('user', 'num_orders', 'hash', 'search_text')