Re: Multiple modelforms in single POST

2011-03-13 Thread gladys bixly
If you look at this code: class Profileform(forms.ModelForm): class Meta: model = User fields = ('first_name','last_name','email',) class Employeeform(forms.ModelForm): """self explanatory""" class Meta(Profileform): model = P

Re: query set on a manytomany table

2011-02-18 Thread gladys bixly
Why would you want to query the table directly? I believe the only way you could access data from a ManyToManyField is through the Model in which it is related. On Fri, Feb 18, 2011 at 11:35 AM, Bobby Roberts wrote: > I have a Manytomanyfield in a model called "registrants" on a > fieldname cal