You can do it as follows:

    class MyForm:
        CHOICES = ( ('P', 'Pending'), ('A', 'Active'), ('D', 'Done'))
        status = forms.ChoiceField(choices=CHOICES,widget=forms.Select
())

Regards,
Polat

On Dec 29, 5:13 am, "Aaron Lee" <[email protected]> wrote:
> I would like to populate a form field which uses a Select widget with
> choices in views.py.
> I understand I can pass the initial arg to the form but I couldn't find the
> correct value to pass.
>
> The choices is a list of tuple
> CHOICES = ( ('P', 'Pending'), ('A', 'Active'), ('D', 'Done'))
>
> Any hints?
>
> -Aaron
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to