A formatting error occurred while I did my previous post. Please make sure that you notice the parentheses at the last line of the code snippet, which were actually meant to be at the end of the previous line.
Regards, Polat On Dec 29, 1:03 pm, Polat Tuzla <ptu...@gmail.com> wrote: > 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" <waifun...@gmail.com> 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 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 -~----------~----~----~----~------~----~------~--~---