Annotation of FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl, revision 1.3
1.1 as 1: <?
2: $topmenu = array('back' => 'javascript:history.back()');
3: $header_title = 'Port Build Failure Reasons';
4: include 'header.inc.tpl';
5: ?>
1.3 ! as 6: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl,v 1.2 2008/01/07 04:33:12 as Exp $ //-->
1.1 as 7: <table>
8: <tr>
9: <th>Tag</th>
10: <th>Description</th>
11: <th>Type</th>
12: </tr>
13: <?foreach($port_fail_reasons as $reason) {?>
14: <tr>
1.2 as 15: <td valign="top"><a id="<?=htmlspecialchars($reason['tag'])?>" href="javascript:history.back()"><?=htmlspecialchars($reason['tag'])?></a></td>
1.3 ! as 16: <td style="white-space: normal;"><?=$reason['descr']?></td>
1.2 as 17: <td valign="top" class="<?="fail_reason_".$reason['type']?>"><?=$reason['type']?></td>
1.1 as 18: </tr>
19: <?}?>
20: </table>
21: <? include 'footer.inc.tpl'; ?>