I\'m using something like this:
field1 = forms.ModelChoiceField(queryset=...)
How can I make my form show the a value as selected?
You can just use
field1 = forms.ModelChoiceField(queryset=..., initial=0)
to make the first value selected etc. It's more generic way, then the other answer.