>
> tbody.append(TR(
> TD(row.products.name),
> TD(row.products.internal_item_number),
> TD(product_total_quantity), # EXTRA CELL comes up
> here!!
> TD(indexer.mk_links('Inventory', 'products', arg,
> leading_links = details_link)),
> ))
>
It looks like the mk_links function returns a TD, so you have a TD nested
inside another TD -- maybe that's the problem. Try:
tbody.append(TR(
TD(row.products.name),
TD(row.products.internal_item_number),
TD(product_total_quantity),
indexer.mk_links('Inventory', 'products', arg,
leading_links = details_link)
))
Anthony