我对表单中的字段渲染有疑问。我有这个代码:
class RTForm(forms.ModelForm):
type_options = {
'error': {
'label': _('Error'),
},
'warning': {
'label': _('Warning'),
},
'off': {
'label': _('Disable'),
}
}
choice_type = forms.ChoiceField(
choices=[(k, v['label']) for k, v in type_options.items()],
required=True, widget=forms.RadioSelect(
attrs={
class="choices"
}
)
)
class Meta:
model = RT
def __init__(self, *args, **kwargs):
self.rt = kwargs.pop('instance', None)
errors = create_error_list(rt.type)
warnings = create_warning_list(rt.type)
super(RTV, self).__init__(*args, **kwargs)
我想做的是在我的模板上拥有与 init 内列表中返回的错误/警告数量一样多的 choice_type 字段(每次不同的数字)。那可能吗?我想不出一个可能的解决方案。