<!-- BEGIN [% component.name %] -->
<table>
<tr>
<th>Lab No</th>
<th>Name</th>
<th>Participant ID</th>
<th>Presentation</th>
<th>Source</th>
<th>Bloods taken</th>
<th>QC date</th>
<th>Tumour<br />type</th>
<th>OMICS<br />samples<br />taken?</th>
</tr>
[% FOREACH data IN reports; # INCLUDE dumper.tt dump = data; %]
<tr>
<td>[% PROCESS site/lab_number.tt want_url=1 %]</td>
<td>[% data.last_name.upper %], [% data.first_name.ucfirst %]</td>
<td>[% data.unit_number %]</td>
<td>[% data.cancer_type %]</td>
<td>[% data.location %]</td>
<td>[% data.sample_taken_date %]</td>
<td>[% data.tumour_qc_date %]</td>
<td>[% data.clinic_sample_type %]</td>
<td align="center">[% data.ccft_dna %]</td>
</tr>
[% END %]
</table>
<!-- END [% component.name %] -->