Annotation of FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl, revision 1.1
1.1 ! as 1: <?
! 2: $topmenu = array('back' => 'javascript:history.back()');
! 3: $header_title = 'Port Build Failure Reasons';
! 4: include 'header.inc.tpl';
! 5: ?>
! 6: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl,v 1.1 2008/01/05 11:56:01 as Exp $ //-->
! 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>
! 15: <td><a name="<?=$reason['tag']?>" href="javascript:history.back()"><?=$reason['tag']?></a></td>
! 16: <td><?=$reason['descr']?></td>
! 17: <td class="<?="fail_reason_".$reason['type']?>"><?=$reason['type']?></td>
! 18: </tr>
! 19: <?}?>
! 20: </table>
! 21: <? include 'footer.inc.tpl'; ?>