Re: Init Parameter Trouble

2008-08-23 Thread Robert
Any Thoughts On Aug 21, 10:51 pm, Robert <[EMAIL PROTECTED]> wrote: > Sure, it's: > > [code > > from quizmodo.base.forms import ClassEventForm > > class StackForm(ClassEventForm): > name = forms.CharField(max_length=100) > description = forms.CharField(widget=forms.Textarea) > anonymous = f

Re: Init Parameter Trouble

2008-08-21 Thread Robert
Sure, it's: [code from quizmodo.base.forms import ClassEventForm class StackForm(ClassEventForm): name = forms.CharField(max_length=100) description = forms.CharField(widget=forms.Textarea) anonymous = forms.BooleanField(required=False) private = forms.BooleanField(required=False) @log

Re: Init Parameter Trouble

2008-08-21 Thread Norman Harman
Robert wrote: > Hello all, Can we see your view code please? -- Norman J. Harman Jr. Senior Web Specialist, Austin American-Statesman ___ It's August! Keep your cool with the Statesman. Check out our hot deals in print and

Init Parameter Trouble

2008-08-20 Thread Robert
Hello all, I have a custom form class that's called from a separate view file. That form class has an init method, and it works perfectly when I don't have to pass any parameters to that method. However, when I pass in ANY parameter (so it's not a namespace issue) the form simply won't submit. It'