> > # embed _help into _controls > if not (isinstance(controls, INPUT) and isinstance(controls, SELECT) and > isinstance(controls, TEXTAREA)): > _controls = DIV(P(controls, _help, _class='form-control-static'), > _class='col-sm-6 controls') > else: > _controls = DIV(controls, _help, _class='col-sm-6 controls') >
That doesn't look like it will work -- the first branch will only execute if controls is an instance of all three types of widgets, which will never be true. I think you want: if not isinstance(controls, (INPUT, SELECT, TEXTAREA)): Why does the comment say: # embed _help into _controls > Don't know. I thought that was your own custom function. Anthony -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.

