使用django crispy表单为formset提供自定义ID

时间:2015-01-20 21:38:40

标签: django django-crispy-forms

我想使用formset为带有Crispy表单的DIV提供自定义ID。 我试图在表单布局中使用forloop.counter,因为它表示它将在模板渲染中注入但它不起作用(它只是被渲染为css_id =' liveprice_ { {forloop.counter}}'

class PrinterMaterialForm(ModelForm):
    class Meta:
        model = PrinterMaterial
        fields = ('material', 'hour_cost', 'gram_cost', 'colors')

    def __init__(self, *args, **kwargs):
        super(PrinterMaterialForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper()
        self.helper.form_tag = False
        self.helper.form_class = 'form-inline'
        self.helper.field_template = 'bootstrap3/layout/inline_field.html'
        self.helper.disable_csrf = True
        self.helper.layout = Layout(
            Div(
                Div(
                    Div(css_class='col-md-4', css_id='liveprice_{{ forloop.counter }}'),
                    css_class='row',
                ),
            ),
        )

1 个答案:

答案 0 :(得分:0)

我找到了解决方案。 实际上,django crispy表单足够聪明,可以在注入的上下文中模拟{{forloop}}。

问题是它只渲染了诸如Field,HTML等节点,而不是css_class,css_id(属性)。

因此我使用的解决方案如下:

self.helper.layout = Layout(
    Div(
        Div(
            HTML("<div class='col-md-4' id='liveprice_{{ forloop.counter }}'></div>"),,
            css_class='row',
        ),
    ),
)

我希望它对某人有所帮助..