``` <table class="itemtable border" style="widt...
# advancedpdf
t
Copy code
<table class="itemtable border" style="width: 100%;"><!-- start items --><#list record.item as item><#if item_index==0>
<thead>
	<tr>
      <th style="width: 30%;">${item.item@label}</th>
      <th style="width: 15%;">Our Part No</th>
      <th align="right" style="width: 15%;">${item.quantity@label}</th>
      <th align="right" style="width: 10%">${item.units@label}</th>
      <th align="right" style="width: 15%;">${item.rate@label}</th>
      <th align="right" style="width: 15%;">${item.amount@label}</th>
	</tr>
</thead>
</#if>
    <tr>
      <td class="pagebreak-never" colspan="6" style="padding: 0;">
        <table style="width: 100%">
          <tr>
            <td style="width: 30%;">${item.item}</td>
            <td style="width: 15%;">${item.options}</td>
            <td align="right" style="width: 15%;">${item.quantity}</td>
            <td align="right" style="width: 10%;">${item.units}</td>
            <td align="right" style="width: 15%;">${item.rate}</td>
            <td align="right" style="width: 15%;">${item.amount}</td>
          </tr>
          <tr class="pb-10 border-bottom">
            <td colspan="2"><span class="uppercase text-grey-light text-small">Description</span><br />${item.description}</td>
            <td colspan="4"><span class="uppercase text-grey-light text-small">Memo</span><br />${item.memo}</td>
          </tr>
        </table>
      </td>
    </tr>
  	</#list><!-- end items --></table>