Re: Creating a custom form from models, problems when ordering

2009-05-20 Thread ccsakuweb
Sorry, I forgot to tell it, I use the 1.0.2 version On 19 mayo, 23:41, Alex Gaynor wrote: > On Tue, May 19, 2009 at 2:53 PM, ccsakuweb wrote: > > > I have a form from a model. I add 3 new inputs. Then when I write in > > Meta : > > model = models.Table > > fiel

Creating a custom form from models, problems when ordering

2009-05-19 Thread ccsakuweb
I have a form from a model. I add 3 new inputs. Then when I write in Meta : model = models.Table fields = ['attribute2', 'newInput1', 'newInput2', 'newInput3', 'attribute3'] for example, the final order is not respect the new inputs. Only respect the attributes of the model in the fields array. Th