为django-filter定制香脆的形状

时间:2016-05-21 03:10:48

标签: django django-forms django-crispy-forms django-filter

我尝试使用django-crispy-formsdjango-filter扩展程序在django中自定义表单。这是我的表单摘录:

class FilterForm(Form):
    def __init__(self, *args, **kwargs):
        super(FilterForm, self).__init__(*args, **kwargs)
        self.helper = FormHelper()
        self.helper.form_method = 'get'

        self.helper.layout = Layout(
            Row(
                Div('country', css_class='col-sm-3'),
                Div('brand', css_class='col-sm-3'),
            )
        )

这是浏览器中布局的样子:

enter image description here

所以我的问题是:如何删除p代码"过滤"其中的文字以及为什么选择控件的箭头按钮会缩小?

1 个答案:

答案 0 :(得分:0)

要使用帮助文字禁用段落,我使用了此设置

FILTERS_HELP_TEXT_FILTER = False

选择框的样式与bootstrap / firefox问题有关。解决方法是在css中重新选择框。