4

我试图有条件地在一个脆的表单 InlineRadio 字段上设置一个初始值,并且被忽略了。

我这样设置initial值:

class CustomWizardForm3(ModelForm):
  def __init__(self, user, *args, **kwargs):
    self.helper = FormHelper()
    self.helper.layout = Layout(
        Fieldset("",
            Div(ImageInlineRadios('sleeve_length'), css_class='span8 clearfix'),
            Div(
                CustomStyleDiv('armhole_edging_stitch', 'armhole_edging_height'),
                css_class="row-fluid")
        )
    ) 

    super(CustomWizardForm3, self).__init__(user, HELP_TEXT, *args, **kwargs)

    if self.instance.is_vest():
        self.fields['sleeve_length'].initial = DC.SLEEVE_VEST

  class Meta:
    model = IndividualDesign
    fields = ('armhole_edging_stitch', 'armhole_edging_height', 'sleeve_length',)

在模型中,sleeve_length声明为:

sleeve_length= models.CharField(
    max_length = 20,
    choices = DC.SLEEVE_LENGTH_CHOICES,
    null = True, 
    blank = True)

我已经在调试器中逐步完成了它,并且该initial属性设置为我所期望的。但是当生成单选按钮时,不会检查任何内容。是什么赋予了?Crispy 和/或 Django Forms 让我发疯。

ETA:ImageInlineRadios 是标准脆饼的一个简单子类。

类 ImageInlineRadios(InlineRadios):

def __init__(self, *args, **kwargs):
    self.span_class = kwargs.pop('span_class', 2)
    super(ImageInlineRadios, self).__init__(*args, **kwargs)

template = 'radio_buttons.html'

def render(self, form, form_style, context, template_pack='bootstrap'):
    import pdb; pdb.set_trace()
    context.update({'inline_class': 'inline', 
                    'images': 'none', 
                    'span_class':self.span_class})
    return super(ImageInlineRadios, self).render(form, form_style, context)

在 radio_buttons.html 模板文件中,我们有:

<input type="radio"
   {% if choice.0|stringformat:"s" == field.value|stringformat:"s" %} checked="checked"{% endif %} 

脆皮不设置field.valueinitial?在我看来,这部分就像脆皮随附的 radioselect.html 模板中的内容,但如果还有其他东西我应该测试,我很想知道它是什么。

4

0 回答 0