Re: Formwizard Initial Data

2008-04-21 Thread Peter Rowell
> forms.ModelMultipleChoiceField(queryset=Submission.objects.all()) > > how can I make the queryset use Submission.objects.filter rather than > objects.all ? I have not used formtools, but just from looking at the above line I wonder if you tried: queryset=Submission.objects.filter(some_fiter_ar

Formwizard Initial Data

2008-04-21 Thread sparky
Hello All, I am writing an app that includes Messaging and I would like to give users the ability to attach other system objects to the messages that they send. The FormWizard stuff is fabulous, but I would like to limit a queryset used in one of the forms here are my Mail forms: class MailFormP