Annotation of FreeBSD/tinderbox/webui/templates/paefchen/current_buildports.tpl, revision 1.1

1.1     ! as          1: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/current_buildports.tpl,v 1.1 2008/01/05 11:56:01 as Exp $ //-->
        !             2: <?if(!$no_list){?>
        !             3:        <h2 id="current">Current</h2>
        !             4:        <table>
        !             5:                <tr>
        !             6:                        <th>Build</th>
        !             7:                        <th>Port</th>
        !             8:                        <th>Duration</th>
        !             9:                        <th>ETA</th>
        !            10:                </tr>
        !            11:                <?foreach($data as $row) {?>
        !            12:                        <tr>
        !            13:                                <td><a href="index.php?action=list_buildports&amp;build=<?=$row['build_name']?>"><?=$row['build_name']?></a></td>
        !            14:                                <td><?=$row['port_current_version']?></td>
        !            15:                                <td><?=time_difference_from_now($row['build_last_updated'])?></td>
        !            16:                                <td><?=is_string($row['build_eta'])?$row['build_eta']:time_elapsed($row['build_eta'])?></td>
        !            17:                        </tr>
        !            18:                <?}?>
        !            19:        </table>
        !            20:        <script language="JavaScript">
        !            21:                setTimeout("reloadpage()", 60000)
        !            22:        </script>
        !            23: <?}?>