我有一个Django应用程序,我有一个模型设置如下:
class Settings(models.Model):
field1 = models.CharField(max_length=40)
field2 = models.TextField(blank=True,null=True)
field3 = models.TextField(blank=True,null=True)
field4 = models.TextField(blank=True,null=True)
.....
现在我想以一种形式显示这些字段,如下所示:
Settings - field1 field2 field3 .....with check box select so that whichever field users choose they are displayed in another form to fill.
例如假设用户只选择所有字段中的field1和field 3,然后以我的其他形式,我将要求用户仅填写field1和field3的数据。
我没有得到如何实现这一目标的逻辑或方向。
提前致谢!