Aria Ghahari
03/27/2020, 2:05 PM<#if record.salesteam?has_content>
<table style="width: 100%;"><!-- Start Sales Team --><#list record.salesteam as salesteam><#if salesteam_index==0>
<thead>
<tr>
<th align="center" font-size="10px" colspan="3">Title</th>
<th align="center" font-size="10px" colspan="9">Name</th>
<th align="center" font-size="10px" colspan="5">Phone</th>
<th align="center" font-size="10px" colspan="5">Fax</th>
<th align="center" font-size="10px" colspan="5">Email</th>
</tr>
</thead>
</#if><tr>
<td align="center" font-size="10px" colspan="3">${record.salesteam.salesrole}</td>
<td align="center" font-size="10px" colspan="9">${record.salesteam.employee}</td>
<td align="center" font-size="10px" colspan="5">${record.salesteam.employee.phone}</td>
<td align="center" font-size="10px" colspan="5">${record.salesteam.employee.fax}</td>
<td align="center" font-size="10px" colspan="5">${record.salesteam.employee.email}</td>
</tr>
</#list><!-- end Sales Team --></table>
<hr />
</#if>