summaryrefslogtreecommitdiff
path: root/buildscripts/PhpDocumentor/phpDocumentor/Converters/HTML/frames/templates/DOM/earthli/templates/errors.tpl
blob: 0f5265846df521432a136135fc56cb4aaa83ea09 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{include file="header.tpl" noleftindex=true}
{section name=files loop=$files}
<a href="#{$files[files].file}">{$files[files].file}</a><br>
{/section}
{foreach key=file item=issues from=$all}
<a name="{$file}"></a>
<h1>{$file}</h1>
{if count($issues.warnings)}
<h2>Warnings:</h2><br>
{section name=warnings loop=$issues.warnings}
<b>{$issues.warnings[warnings].name}</b> - {$issues.warnings[warnings].listing}<br>
{/section}
{/if}
{if count($issues.errors)}
<h2>Errors:</h2><br>
{section name=errors loop=$issues.errors}
<b>{$issues.errors[errors].name}</b> - {$issues.errors[errors].listing}<br>
{/section}
{/if}
{/foreach}
{include file="footer.tpl"}