在批量Django中使用自制表单填充数据库模型

时间:2014-05-05 02:45:54

标签: python django forms

使用下面的2张图片作为参考,您可以看到一张图片有3个匹配,另一张图片只有一张匹配。这只是对 encuesta模型表的调用,它会带来当天的所有匹配项。

用户可以在 respuestas型号表上保存可用匹配的答案。

你在图像上的网格是在模板一侧手工制作的,没有{{form}}只是迭代查询结果并添加这些字段。

我需要的是将可用字段发送到模型respuestas以创建新行,其中用户认为匹配的答案将来会产生。

enter image description here

enter image description here

这应该是上面2个图像的等效字段,换句话说,网格中显示的值应该保存为该模型表上的新行(respuestas)

enter image description here

这是我的models.py

class equipo(models.Model):

nombre = models.CharField(max_length=30)
bandera = StdImageField(upload_to='bandera/%Y/%m/%d',
                        variations={
                        'large':(53,53, False),
                        'thumbnail': (70, 26, False)})

GRUPOS = (
    ('A', 'Grupo A'),
    ('B', 'Grupo B'),
    ('C', 'Gropo C'),
    ('D', 'Gropo D'),
    ('E', 'Gropo E'),
    ('F', 'Gropo F'),
    ('G', 'Gropo G'),
    ('H', 'Gropo H'),
)

grupo = models.CharField(max_length=1, choices=GRUPOS)

def banderaEquipo(self):
    return '<img src="/media/%s">' % (self.bandera.thumbnail)

banderaEquipo.allow_tags = True

def __unicode__(self):
    return self.nombre


class encuesta(models.Model):

equipoA = models.ForeignKey(equipo, related_name='equipo_equipoA')
golesEquipoA = models.IntegerField(max_length=2, null=True, blank=True)
equipoB = models.ForeignKey(equipo, related_name='equipo_equipoB')
golesEquipoB = models.IntegerField(max_length=2, null=True, blank=True)

ETAPA = (
    ('1', 'Primera Etapa'),
    ('2', 'Octavos De Final'),
    ('3', 'Cuartos De Final'),
    ('4', 'Semifinal'),
    ('5', 'Final'),
    ('6', '3ra Posicion')
)

etapa = models.CharField(max_length=1, choices=ETAPA)
fecha = models.DateTimeField(auto_now_add=False)

def __unicode__(self):

    return "%s Vs. %s" % (unicode(self.equipoA), unicode(self.equipoB))


class respuesta(models.Model):

encuesta = models.ForeignKey(encuesta)
empresa = models.ForeignKey(empresa)
empleado = models.ForeignKey(empleado)
equipoA = models.IntegerField(max_length=1)
equipoB = models.IntegerField(max_length=1)
fecha = models.DateField(auto_now_add=True)

def __unicode__(self):

    return "%s" % (unicode(self.encuesta))

1 个答案:

答案 0 :(得分:0)

看起来好像您正在寻找Formsets。 Formsets允许您一次在多个数据上显示和验证表单。