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

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.4     ! as          6: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl,v 1.3 2008/01/07 04:35:35 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>
1.4     ! as         21: <?
        !            22: $footer_legend = array(
        !            23:        'port_dud'              => 'Dud', 
        !            24:        'port_depend'   => 'Depend',
        !            25:        'port_fail'             => 'Fail',
        !            26: );
        !            27: include 'footer.inc.tpl'; ?>