Annotation of FreeBSD/tinderbox/webui/templates/paefchen/list_builds.tpl, revision 1.1.2.1

1.1       as          1: <?
                      2: $topmenu = array(
                      3:        "Current And Latest Builds"     => "index.php?action=latest_buildports",
                      4:        "Failed builds in this build"   => "index.php?action=failed_buildports",
                      5: );
                      6: include 'header.inc.tpl';
                      7: ?>
1.1.2.1 ! as          8: <!-- $Paefchen: FreeBSD/tinderbox/webui/templates/paefchen/list_builds.tpl,v 1.1 2008/01/05 12:25:17 as Exp $ //-->
1.1       as          9: <?if(!$no_list){?>
                     10:        <table>
                     11:                <tr>
                     12:                        <th style="width: 20px">&nbsp;</th>
                     13:                        <th>Build Name</th>
                     14:                        <th>Build Description</th>
                     15:                        <th>
1.1.2.1 ! as         16:                                <span title="unknown / fail / leftovers">
        !            17:                                U / F / L
1.1       as         18:                                </span>
                     19:                        </th>
                     20:                        <th>Build Packages</th>
                     21:                </tr>
                     22: 
                     23:                <?foreach($data as $row) {?>
                     24:                        <tr>
                     25:                                <td class="<?=$row['status_field_class']?>">&nbsp;</td>
                     26:                                <td><a href="index.php?action=list_buildports&amp;build=<?=$row['name']?>"><?=$row['name']?></a></td>
                     27:                                <td><?=$row['description']?></td>
                     28:                                <td align="center">
1.1.2.1 ! as         29:                                        <span title="unknown / fail / leftovers">
1.1       as         30:                                        <?=$row['results']['UNKNOWN']?>
                     31:                                        /
                     32:                                        <?=$row['results']['FAIL']?>
                     33:                                        /
                     34:                                        <?=$row['results']['LEFTOVERS']?>
                     35:                                        </span>
                     36:                                </td>
                     37:                                <?if($row['packagedir']){?>
                     38:                                        <td><a href="<?=$row['packagedir']?>">Package Directory</a></td>
                     39:                                <?}else{?>
                     40:                                        <td><i>No packages for this build</i></td>
                     41:                                <?}?>
                     42:                        </tr>
                     43:                <?}?>
                     44: 
                     45:        </table>
                     46: <?}else{?>
                     47:        <p>There are no builds configured.</p>
                     48: <?}?>
                     49: <div class="subcontent">
                     50:        <h1>All Build Failures for the maintainer</h1>
                     51:        <form method="get" action="index.php">
                     52:                <input type="hidden" name="action" value="failed_buildports" />
                     53:                <select name="maintainer">
                     54:                        <option></option>
                     55: <?foreach($maintainers as $maintainer) {?>
                     56:                        <option><?=$maintainer?></option>
                     57: <?}?>
                     58:                </select>
                     59:                <input type="submit" name="Go" value="Go" />
                     60:        </form>
                     61: </div>
                     62: <?
                     63: $footer_legend = array(
                     64:        'build_portbuild'       => 'Building',
                     65:        'build_prepare'         => 'Prepare'
                     66: );
                     67: include 'footer.inc.tpl'; 
                     68: ?>