I have the following form with radio selection capabilities:
jobStatus = forms.ChoiceField( widget=forms.RadioSelect())
However, it displays radio buttons in tags <ul> <li> .. </li></ul>.
Could you offer me any way to make a single input for radio exchange?
thank
source
share