http://docs.djangoproject.com/en/dev/ref/forms/widgets/#django.forms.Select
Here, it says I can do SELECT widgets. But how do I do that? It doesn\'t show any example on
errx's solution was almost correct in my case, the following did work (django v1.7x):
CHOICES= ( ('1','ME'), ('2','YOU'), ('3','WE'), ) select = forms.ChoiceField(widget=forms.Select, choices=CHOICES)
The elements inside CHOICES correspond to ($option_value,$option_text).