Hi there, I got a form:
class Answers(models.ModelForm):
psyq11 = forms.ModelChoiceField(
queryset=PsychologicQuestion11.objects.all(),
widget=forms.RadioSelect)
psyq12 = forms.ModelChoiceField(
queryset=PsychologicQuestion12.objects.all(),
widget=forms.RadioSelect)
etc. etc....
The widget shows the '-------' entry.. I don't want it. Is there a way to solve it?
Also I would like to split the form into four areas in the template... is it possible?
Best regards, cheers :)