1<table>
2	<caption>Count: {{$count|escape}}</caption>
3	<tr>
4		<th>Object</th>
5		<th>Type</th>
6	</tr>
7	{{foreach from=$results item=row}}
8		<tr>
9			<td>{{$row.object_id|escape}}</td>
10			<td>{{$row.object_type|escape}}</td>
11		</tr>
12	{{/foreach}}
13</table>
14