Hello list,what would be the easiest way to display a Rows object as an table with some additional info.
rows = db(db.items.order = order.id).select() gives 3 rows and 10 fields.
total = 0
for row in rows
total += rows.sum
That I´d like to display data as:
Item 1 10.50 delete (a link to delete this record)
Item 2 5 delete
Item 3 7.89 delete
Total 23,39
Can I do this with SQLTABLE or TABLE and TR?
Kenneth

