多个对象创建/版本表单

时间:2012-10-29 09:41:18

标签: django django-forms

  

可能重复:
  Dynamically adding a form to a Django formset with Ajax

我找到了关于为多个对象重新表单的有趣链接:

https://collingrady.wordpress.com/2008/02/18/editing-multiple-objects-in-django-with-newforms/

让我们说我们有来自民意调查app的经典danjo模型:

from django.db import models

class Poll(models.Model):
    question = models.CharField(max_length=200)
    pub_date = models.DateTimeField()

class Choice(models.Model):
    poll = models.ForeignKey(Poll)
    choice = models.CharField(max_length=200)
    votes = models.IntegerField(default=0)

我希望有一个表单来创建一个民意调查并添加尽可能多的选择字段(例如django admin,你单击+并添加一个字段)。在我给你的链接中,有3个固定选择字段。

你知道我该怎么办吗?

0 个答案:

没有答案