1{include file="header.tpl" noleftindex=true}
2{section name=files loop=$files}
3<a href="#{$files[files].file}">{$files[files].file}</a><br>
4{/section}
5{foreach key=file item=issues from=$all}
6<a name="{$file}"></a>
7<h1>{$file}</h1>
8{if count($issues.warnings)}
9<h2>Warnings:</h2><br>
10{section name=warnings loop=$issues.warnings}
11<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br>
12{/section}
13{/if}
14{if count($issues.errors)}
15<h2>Errors:</h2><br>
16{section name=errors loop=$issues.errors}
17<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br>
18{/section}
19{/if}
20{/foreach}
21{include file="footer.tpl"}
22