Re: ModelForm not saving fields that are not in the form

2009-02-11 Thread felix
nevermind the admin class wasn't calling super() in save_model once again an hour of being stuck, then solved the problem minutes after posting On Wed, Feb 11, 2009 at 1:57 PM, felix wrote: > > I have fields in the model that do not appear in the form. > Those fields are filled in by a geocod

ModelForm not saving fields that are not in the form

2009-02-11 Thread felix
I have fields in the model that do not appear in the form. Those fields are filled in by a geocode result. but the data is not getting saved class EditContactForm(forms.ModelForm): """ this is the parent form class for all contact editing """ class Meta: model = Contact ex