This might sound too basic, but I couldn't find out how to display extra text in across the width of the whole form table.
Right now, I do it this way (which only displays in the input column)
but I wonder what's the web2py way?
form=SQLFORM.factory(
Field('instruction','text', writable=False, default='Extra text to
display'),
Field('f1', 'string'))

