Re: django forms validation with choice and m2m fields

2009-04-23 Thread Timboy
Thank you very much Alex! On Apr 23, 9:28 pm, Alex Gaynor wrote: > On Fri, Apr 24, 2009 at 12:25 AM, Timboy wrote: > > > Does this data get checked to make sure that it is what was on the > > form? > > > If I have a list of choices 1,2,3 and someone modifies the form to add > > a # 4 and choose

Re: django forms validation with choice and m2m fields

2009-04-23 Thread Alex Gaynor
On Fri, Apr 24, 2009 at 12:25 AM, Timboy wrote: > > Does this data get checked to make sure that it is what was on the > form? > > If I have a list of choices 1,2,3 and someone modifies the form to add > a # 4 and chooses that will django forms catch it or do I need to make > sure on every one of

django forms validation with choice and m2m fields

2009-04-23 Thread Timboy
Does this data get checked to make sure that it is what was on the form? If I have a list of choices 1,2,3 and someone modifies the form to add a # 4 and chooses that will django forms catch it or do I need to make sure on every one of my fields that the entered value is what was in the list? TI