In my forms.py I have
forms.py
[...] self.helper.layout = Layout( Field(\'name\'), Field(\'description\'), ) self.helper.form_class = \'form-hori
Cant you wrap those fields in a div? Doesnt this solve your problem?
self.helper.layout = Layout( Div(Field('name',maxlength=20),css_class = 'controls col-md-8 col-xs-7'), Field('description'), )