我想在名为 tests 的表单集中的表单中输入字段名称。
对于我的表单集中的每个表单,我希望测试字段包含可变数量的选择框,每个选择框的标签均不同。这可能吗?
forms.py:
fields = []
for gene, test in tests.items():
fields.append(forms.ChoiceField(
label=gene,
choices=TEST_CHOICES
))
self.fields['tests'] = fields
谢谢