From c4483b45877feba3515fdbe63b6f6f6bda81ca8b Mon Sep 17 00:00:00 2001 From: Jonathan Bohren Date: Mon, 21 Jan 2013 21:52:10 -0500 Subject: [PATCH] Switching message type for auto-generated forms --- gluon/sqlhtml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gluon/sqlhtml.py b/gluon/sqlhtml.py index bf9e8ea0..29271bde 100644 --- a/gluon/sqlhtml.py +++ b/gluon/sqlhtml.py @@ -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