thanks, Anthony.

I stared at that thing for at least 30 minutes this morning and didn't
see the nesting.

Another palm-to-forehead moment.

On Feb 16, 10:24 am, Anthony <abasta...@gmail.com> wrote:
> >                 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

Reply via email to