Hi miroslavgojic: To see html and other things like css, javascript I recomend you use firebug (a firefox addon) or similar in chrome (getfirebug.com) Other firefox addon (only useful to see html only) is: view source chart. Both firebug and view source chart can be found in addons.mozilla.com
To change the table of the form (generated) please see this (from the book:[SQLForm Chapter] http://www.web2py.com/book/default/chapter/07?search=form+style): formstyle determines the style to be used when serializing the form in html. It can be "table3cols" (default), "table2cols" (one row for label and comment, and one row for input), "ul" (makes an unordered list of input fields), "divs" (represents the form using css friendly divs, for arbitrary customization). formstyle can also be a function that takes (record_id, field_label, field_widget, field_comment) as attributes and returns a TR() object. HTH!!!! Bye