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");
> 

<https://docs.djangoproject.com/en/1.4/ref/forms/api/#django.forms.Form.initial>

initial = {
   'email': 'y...@example.com',
   'name': 'John',
   'lastname': 'Doe',
}

form = MyForm(initial=initial)
-- 
Melvyn Sopacua

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to