Re: Editing a form values

2012-08-16 Thread Melvyn Sopacua
On 16-8-2012 21:08, Nicolas Ardison wrote: > I found how to solve it, Dismiss this message, i read in documentation. > > ##START OF CODE > class MyForm ( form.Form): > > email = forms.CharField(label="Email"); > name= forms.CharField(label="name"); > lastname = forms.CharField(label=" lastname"

Re: Editing a form values

2012-08-16 Thread Nicolas Ardison
I found how to solve it, Dismiss this message, i read in documentation. ##START OF CODE class MyForm ( form.Form): email = forms.CharField(label="Email"); name= forms.CharField(label="name"); lastname = forms.CharField(label=" lastname"); def Loadname(self,n_name) self.fields[' name '].ini

Editing a form values

2012-08-16 Thread Nicolas Ardison
Hello guys, i can not find how to the following things. I have a form that it's not related with any model, and i want to load it with initial data. ##START OF CODE class MyForm ( form.Form): email = forms.CharField(label="Email"); name= forms.CharField(label="name"); lastname = forms.CharFie