更改默认表单小部件以供选择

时间:2014-01-28 18:40:44

标签: django

我正在尝试对调查进行建模。

models.py

class Survey(models.Model):
    Student = models.ForeignKey(Student)

    OPTIONS = (
        ('0','Behavior 1'),
        ('1','Behavior 2'),
        ('2','Behavior 3'),
        )

    behaviors = models.SmallIntegerField(choices=OPTIONS)
    how_cool = models.SmallIntegerField() # rating from 1 to 5

我希望将行为显示为一组复选框,而不是默认下拉列表。我是否需要编写自定义模型字段?

1 个答案:

答案 0 :(得分:1)

创建一个ModelForm,将行为指定为复选框:

from django.forms import ModelForm, CheckboxInput

class SurveyForm(ModelForm):
    behaviors =  forms.ChoiceField(choices=OPTIONS, widget=CheckboxInput)

现在,您可以在管理员或CBV中使用此表单将行为呈现为复选框。

请看这里:https://docs.djangoproject.com/en/dev/ref/forms/fields/#widget