Re: ModelForm - field sort order

2009-03-23 Thread PNM
Thanks - that's it. Sanity confirmed. Those "new in Django xx" comments are invaluable (when they're there!) for tired eyes looking at two superficially identical documents. On Mar 23, 11:40 am, Russell Keith-Magee wrote: > On Mon, Mar 23, 2009 at 6:55 PM, PNM wrote: > > > I have a sorting pr

Re: ModelForm - field sort order

2009-03-23 Thread Russell Keith-Magee
On Mon, Mar 23, 2009 at 6:55 PM, PNM wrote: > > I have a sorting problem with a completely basic ModelForm instance > (the class has only Meta with model and fields) -- the object's > __iter__ seems to be following object.fields (as defined in the > model), rather than Meta.fields (as the documen

ModelForm - field sort order

2009-03-23 Thread PNM
I have a sorting problem with a completely basic ModelForm instance (the class has only Meta with model and fields) -- the object's __iter__ seems to be following object.fields (as defined in the model), rather than Meta.fields (as the documentation leads me to expect). Is it me, or is there somet