模板代码是
{{ form.incident_live }}
表格.py
INCIDENT_LIVE = (
('0', 'Live'),
('1', 'Test'),
)
class IncidentForm(forms.ModelForm):
incident_live = forms.ChoiceField(widget=forms.RadioSelect(),choices=INCIDENT_LIVE)
上面的代码给了我带有垂直顺序选择的单选按钮,但我希望它是水平的,即等效的 html 将是<input type="radio" name="status" />Live <input type="radio" name="status" checked="checked"/> Test
。
提前致谢