I have the following form with radioselect options :
jobStatus = forms.ChoiceField( widget=forms.RadioSelect())
However, it renders the radio buttons in <ul> <li> .. </li></ul>
tags.
Could you suggest me any way to render the only radiobutton input ?
Thanks