<html>
<head>
<title>Current Jobs</title>
<link REL="stylesheet" href="include/style.css" type="text/css">
</head>
{literal}
<style>
table { border-collapse: collapse}
td {
padding: 5px;
margin: 0px;
border-width: 1px;
border-style: solid;
border-color: #000000;
}
</style>
{/literal}
{include_if_exists file="include/header.php"}
{doevent name="ListOnLoad"}
{include file="$showmasterfile"}
<h1>Current Jobs</h1>
<table align='center' width='95%' border='0' cellpadding=3 cellspacing=2>
<tr>
<!--{if $column1show}-->
<td class=blackshade>Patient Name</td>
<td class=blackshade>Consultant</td>
<td class=blackshade>Date</td>
<td class=blackshade>Type</td>
<td class=blackshade>Status</td>
<td class=blackshade>Name</td>
<td class=blackshade>Result</td>
<td class=blackshade>Notes</td>
<!--{/if}-->
</tr>
{foreach from=$rowinfo item=row}
<tr valign=top>
<td>
{$row.1Patient_Name_value}
</td>
<td>
{$row.1Consultant_value}
</td>
<td>
{$row.1Date_value}
</td>
<td>
{$row.1Type_value}
</td>
<td>
{$row.1Status_value}
</td>
<td>
{$row.1Name_value}
</td>
<td>
{$row.1Result_value}
</td>
<td>
{$row.1Notes_value}
</td>
</tr>
{/foreach}
<!-- totals row -->
</table>
{include_if_exists file="include/footer.php"}
</body>
</html>