脆弱表单:FieldSet的默认选择值

时间:2014-06-18 08:39:52

标签: django-crispy-forms

我有一个项目列表,我正在填充一个脆弱的形式ChoiceField

对于我的生活,我无法弄清楚如何设置默认选择REGION_CHOICE中的哪个项目。

    REGIONS = {
       'us': 'US VALUE',
       'ch': 'CH VALUE'
    }

    REGION_CHOICE = list(REGIONS.items())
    region = forms.ChoiceField(label='', choices=REGION_CHOICE, required=True)

布局:

    self.helper.layout = Layout(
        Field('request', placeholder='Begin with a value...'),
        Field('region'),
        Submit("SUBMIT", "SUBMIT"),
        HTML('<a href="{% url \'rush\' %}" class="btn btn-primary btn-md right">rush History</a>')
    )

如何为输入选择默认值?

1 个答案:

答案 0 :(得分:0)

在字段属性中需要默认参数,您可以在其中放置值。样品:

terminal