<html>
<head>
<title>Uploaded Leads</title>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<form name=leadErrorForm method="post" action="">
<table width="800" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="first">File Name</td><td class="first">Show Details</td>
</tr>
{if $NumRows gt 0}
{foreach item=row from=$dataRow name=data}
<tr bgcolor="#FFFFFF">
<td class="second">{$row.FileName|stripslashes}</td>
<!--<td class="second">{$row.DupLeadID}DETAILS</td>-->
{if $row.ErFilesId gt 0}
<td class="second"><a href="javascript:void(0)" onclick="fnc_showLeadErrorDetails({$row.ErFilesId})">DETAILS</a></td>
{else}
<td class="second">No Errors</td>
{/if}
<!--<input type="text" name="ErrorID" value="{$row.ErrorID}">-->
<!--errorDetails.php?DupLeadID={$row.DupLeadID}"-->
</tr>
{/foreach}
{else}
<tr bgcolor="#FFFFFF">
<td colspan="2" class="star" align="center"><strong>No Duplicate Leads Found</strong></td>
</tr>
{/if}
<input type="hidden" name="ErFilesId" value="">
</table>
</form>
</body>
</html>