0

我正在摆弄 Django 表单和 Django Crispy Forms(使用 Bootstrap 作为我的主题)。我定义了两个字段:

test1 = forms.BooleanField(label='Some label here', help_text='help text here')

test2 = forms.CharField(label='another label', help_text='more help text')

当我呈现我的表单时,test2 字段显示如下标签:

another label: <input box>

下方有“更多帮助文本”。

但是,对于test1(BooleanField),标签似乎改变了文本框后显示的值,即

[] 'Some label here'
help text here

有没有办法让它显示得更像:

Some label here []
help text here

谢谢!

4

1 回答 1

0

我最终为某些字段使用了自定义模板,例如:

Field('my_field', template='my_field_template.html')

在 my_field_template.html 中,我可以指定我想要的顺序。

于 2013-07-08T22:28:46.547 回答