>
> links = [lambda row: A('Add usder' , _href = URL('default', 'adduserl',
> args = [row.id]))]
>
Note, by default, the items in the "links" list get added to the final
column, along with the View, Edit, and Delete buttons. If you want a given
link in its own column with a heading, the item can be a dict with "header"
and "body" keys:
links = [dict(header='Add User',
body=lambda row: A('Add user' , _href = URL('default',
'adduserl', args = [row.id])))]
Anthony

