I just tried it as if I were creating an Item list...
# advancedpdf
a
I just tried it as if I were creating an Item list but nothing renders on the page. This is my code:
Copy code
<#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>