Annotation of FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl, revision 1.2

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.2     ! as          6: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl,v 1.1 2008/01/05 12:25:17 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>
        !            16:                <td style="white-space: normal;"><?=htmlspecialchars($reason['descr'])?></td>
        !            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'; ?>