I created a template for quotes with two different tables. The first table is working finde displaying product name and product description. The second should show product name, quantity, price and overall price. But it shows the same data as the first table. Can Zoho render only one table?
This is the non working code.
<table border="0" cellpadding="3" cellspacing="0" style="font-size:10px;"
width="100%">
<thead>
<tr>
<td style="TEXT-ALIGN: center" width="30%"> </td>
<td style="TEXT-ALIGN: center" width="70%"> </td>
</tr>
<tr>
<td colspan="11"></td>
</tr>
</thead>
<tbody id="lineItem">
<tr>
<td align="left" valign="top" width="30%">
<strong>${Products.Product Name}</strong></td>
<td align="left" valign="top" width="70%">
${Products.Description}</td>
</tr>
</tbody>
<tr>
<td colspan="11"></td>
</tr>
</table><br>
<br>
<table border="0" cellpadding="3" cellspacing="0" style="font-size:10px;"
width="100%">
<thead>
<tr>
<td><span style="font-weight: bold;">Leistung</span></td>
<td style="text-align: right;"><strong>Menge</strong></td>
<td style="TEXT-ALIGN: center">
<strong>Einzelpreis</strong></td>
<td style="text-align: center;">
<strong>Gesamtpreis</strong></td>
</tr>
<tr>
<td colspan="5"></td>
</tr>
</thead>
<tbody id="lineItem">
<tr>
<td align="left" valign="top">${Products.Product Name}</td>
<td align="right" valign="top">${Quotes.Qty}</td>
<td align="right" style="text-align: right;" valign="top">
${Quotes.Unit Price} €</td>
<td align="right" style="TEXT-ALIGN: right" valign="top">
${Quotes.Total} €</td>
</tr>
</tbody>
<tr>
<td colspan="4"></td>
</tr>
<tbody>
<tr>
<td colspan="4"> </td>
</tr>
<tr>
<td colspan="4"> </td>
</tr>
<tr>
<td colspan="4"> </td>
</tr>
<tr>
<td colspan="3" style="TEXT-ALIGN: left">Netto</td>
<td style="TEXT-ALIGN: right">${Quotes.Sub Total} €</td>
</tr>
<tr>
<td colspan="3" style="text-align: left;">MwSt. 19%</td>
<td style="text-align: right;">${Quotes.Tax} €</td>
</tr>
<tr>
<td colspan="3" style="TEXT-ALIGN: left">
<strong>Gesamt-Netto</strong></td>
<td nowrap="nowrap" style="TEXT-ALIGN: right">
<strong>${Quotes.Grand Total} €</strong></td>
</tr>
</tbody>
</table>