是否采用Django格式,可以通过选择dropdownmenu或radioselect来运行特定方法?
例如,在我选择输入选项时提交表单,然后运行foo
方法,当我选择Outout时,运行bar
左右......
STATUS = (
("in", _("Input")),
("out", _("Output")),
)
class MaterialFlow(models.Model):
status = models.CharField(max_length=3, choices = STATUS)