~quam-plures-core/quam-plures/qp-branding-3

« back to all changes in this revision

Viewing changes to phpdoc/smarty_template/templates/errors.tpl

  • Committer: Anne Verberckmoes
  • Date: 2010-01-18 17:11:29 UTC
  • mfrom: (7396.1.8 trunk)
  • Revision ID: tenderfeelings@gmail.com-20100118171129-lncwc183zjgl5kzq
taking the easy road

Show diffs side-by-side

added added

removed removed

Lines of Context:
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"}