Merge pull request #56 from jbohren-forks/fix-formstyle-help

Switching style class for auto-generated form help to "help-block"
This commit is contained in:
mdipierro
2013-02-10 15:14:40 -08:00
+1 -1
View File
@@ -774,7 +774,7 @@ def formstyle_bootstrap(form, fields):
parent = FIELDSET()
for id, label, controls, help in fields:
# wrappers
_help = SPAN(help, _class='help-inline')
_help = SPAN(help, _class='help-block')
# embed _help into _controls
_controls = DIV(controls, _help, _class='controls')
# submit unflag by default