ModelForm インスタンスの一部であるフィールドを動的に制限する最善の方法を知りたいです。具体的には、
class ModelWithManyFields(models.Model):
many fields ....
class FormOfSelectedModelFields(forms.ModelForm):
class Meta:
model = ModelWithManyFields
fields = [ a dynamic list for model fields determined by the view ]
FormOfSelectdModelFields()
ビューに固有のロジックによって動的に決定されるフィールドのリストを使用して のインスタンスを作成する最良の方法は何ですか?