File: D:/HostingSpaces/PvdBoogaard/indoorski.nl/backup/oude-site/cms/admin/templates/importer.report.tpl
<div id="reportSummary">
{$lang.reportResultsIntro}:
<ul>
<li>{$lang.reportTotalItemsImported}: {$importTotalCount}</li>
<li>{$lang.reportImportSuccesses}: {$importSuccessCount}</li>
<li>{$lang.reportImportWarnings}: {$importWarningCount}
{if $importWarningCount > 0}
[<a href='#' onclick="$('#reportSummary').hide();$('#reportWarning').show('slow');">{$lang.importerMoreInformation}</a>]
{/if}
</li>
<li>{$lang.reportImportErrors}: {$importErrorCount}
{if $importErrorCount > 0}
[<a href='#' onclick="$('#reportSummary').hide();$('#reportError').show('slow');">{$lang.importerMoreInformation}</a>]
{/if}
</li>
</ul>
</div>
<div id="reportWarning" style=" display: none;">
<div style="font-weight: bold;">{$lang.reportImportWarnings}</div><br />
<a href="#" onclick="$('#reportWarning').hide();$('#reportSummary').show('slow');">Show Summary</a><br /><br />
<div id="reportWarningList" style="overflow: auto; max-height: 500px;">
{foreach from=$reportWarningMessages item=row}
{$row.message}<br />
{/foreach}
</div>
</div>
<div id="reportError" style="display: none;">
<div style="font-weight: bold;">{$lang.reportImportErrors}</div><br />
<a href="#" onclick="$('#reportWarning').hide();$('#reportSummary').show('slow');">Show Summary</a><br /><br />
<div id="reportErrorList" style="overflow: auto; max-height: 500px;">
{foreach from=$reportErrorMessages item=row}
{$row.message}<br />
{/foreach}
</div>
</div>