
WebObject 'table' is used to display the content of a table inside a page.
It is used like this:

    <Include SRC="{{TABLE_PATH}}table.html" />

    <WebObject Class="table" Name="offices" 
               table="offices"
               fields="off_id,name" 
               where="off_id < 10" />

If attribute 'table' is the name of the table that will be displayed. 
If it is not specified, its default value is {{obj_name}} (the value
of attribute 'Name').

The attribute 'fields' is the list of fields that will be displayed.
It is optional and its default value is "*" (all fields).

The attribute 'where' is the select condition for selecting the records.
It is optional and its default value is "" (all the records).

