<!-- BEGIN [% template.name %] -->
[% META title = 'Worklist » Gross Description Entry' -%]
<script type="text/javascript" src="/js/jquery.textarea-expander.js"></script>
<h2>Gross description entry</h2>
[% # checkbox to filter out clinical_trials
PROCESS worklist/local/histology_trial_filter.tt
%]
[% IF requests.size %]
<table class="indent">
<tr>
<td class="borderless"></td>
<th>LabNo</th>
<th>Name</th>
<th>Specimen</th>
<th>Description</th>
</tr>
[% FOREACH data IN requests %]
<tr>
<td>[% loop.count %]</td>
<td valign="middle">
[% INCLUDE site/lab_number.tt want_url = 1 %]
</td>
<td>
[% data.patient_case.patient.last_name | upper %],
[% data.patient_case.patient.first_name | ucfirst %]
</td>
<td class="title">
[% data.request_specimen.specimen.sample_code %]
<td>
<form method="post"
action="[% app_url %]/local_worklist/gross_description/[% data.id %]" >
<textarea name="gross_description" rows="1" cols="70"
class="expand20-200"></textarea>
[% site.html.submit %]
</form>
</td>
</tr>
[% END %]
</table>
[% ELSE %]
<p class="indent">No records with outstanding gross description found</p>
[% END %]
<!-- END [% template.name %] -->