[% INCLUDE admin/header %]
<h1>Reports -> Site Inspections</h1>
<div id="landowner_databox">
<div id="demo">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="example" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Maf Ref:</th>
<th>Landowner</th>
<th>Area</th>
<th>modify</th>
</tr>
</thead>
<tbody>
[% FOREACH col IN inspections %]
<tr class="odd gradeX">
<td>[% col.id %]</td>
<td>[% col.site %]</td>
<td>[% col.date %]</td>
<td class="center">[% col.area.name %]</td>
<td><a href="/page/admin/site?id=[% col.id %]">modify</a></td>
</tr>
[% END %]
</table>
</div>
</div>