Annotation of FreeBSD/tinderbox/webui/templates/default/list_failure_reasons.tpl, revision 1.1

1.1     ! as          1: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
        !             2: <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
        !             3: <head>
        !             4: <!-- $MCom: portstools/tinderbox/webui/templates/default/list_failure_reasons.tpl,v 1.3 2006/02/21 16:24:56 ade Exp $ //-->
        !             5: <title><?=$tinderbox_name?></title>
        !             6: <link href="<?=$templatesuri?>/tinderstyle.css" rel="stylesheet" type="text/css" />
        !             7: </head>
        !             8: <body>
        !             9: 
        !            10:        <h1>
        !            11:                Port Build Failure Reasons
        !            12:        </h1>
        !            13: 
        !            14: <p><a href="index.php">Back to homepage</a> <br />
        !            15: <a href="javascript:history.back()">back</a></p>
        !            16: 
        !            17:        <table>
        !            18:                <tr>
        !            19:                        <th>Tag</th>
        !            20:                        <th>Description</th>
        !            21:                        <th>Type</th>
        !            22:                </tr>
        !            23: 
        !            24:                <?foreach($port_fail_reasons as $reason) {?>
        !            25:                        <tr>
        !            26:                                <td><a name="<?=$reason['tag']?>" href="javascript:history.back()"><?=$reason['tag']?></a></td>
        !            27:                                <td><?=$reason['descr']?></td>
        !            28:                                <td class="<?="fail_reason_".$reason['type']?>"><?=$reason['type']?></td>
        !            29:                        </tr>
        !            30:                <?}?>
        !            31:        </table>
        !            32: 
        !            33: <p>Local time: <?=$local_time?></p>
        !            34: <?=$display_login?>
        !            35: <p><a href="index.php">Back to homepage</a></p>
        !            36: </body>
        !            37: </html>