File:  [Paefchen] / FreeBSD / tinderbox / webui / templates / paefchen / list_failure_reasons.tpl
Revision 1.4: download - view: text, annotated - select for diffs - revision graph
Mon Jan 7 04:37:34 2008 UTC (16 years, 10 months ago) by as
Branches: MAIN
CVS tags: HEAD
Add legend

<?
$topmenu = array('back' => 'javascript:history.back()');
$header_title = 'Port Build Failure Reasons';
include 'header.inc.tpl';
?>
<!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_failure_reasons.tpl,v 1.4 2008/01/07 04:37:34 as Exp $ //-->
<table>
	<tr>
		<th>Tag</th>
		<th>Description</th>
		<th>Type</th>
	</tr>
<?foreach($port_fail_reasons as $reason) {?>
	<tr>
		<td valign="top"><a id="<?=htmlspecialchars($reason['tag'])?>" href="javascript:history.back()"><?=htmlspecialchars($reason['tag'])?></a></td>
		<td style="white-space: normal;"><?=$reason['descr']?></td>
		<td valign="top" class="<?="fail_reason_".$reason['type']?>"><?=$reason['type']?></td>
	</tr>
<?}?>
</table>
<?
$footer_legend = array(
	'port_dud'		=> 'Dud', 
	'port_depend'	=> 'Depend',
	'port_fail'		=> 'Fail',
);
include 'footer.inc.tpl'; ?>