我想通过弹出窗口从视图中添加新模型字段,然后返回到原始模型创建/编辑视图。
示例:
models.py:
class B(models.Model):
name = models.CharField(max_length=100)
a = models.ManyToManyField(A, null=True, blank=True, name='a')
views.py:
class BCreate(CreateView):
model = B
fields = ['name', 'a']
b_form.html:
<div class="col-sm-10">
{{ field }}
<button type="button" class="btn btn-success">Add A</button>
</div>
我想通过BCreate CreateView添加新的A模型对象,并添加A&#39;按钮。 我该怎么做?