comparison talosnames/templates/index.html @ 26:c6a042aad739

fix some things
author Jeff Hammel <jhammel@mozilla.com>
date Thu, 12 Jul 2012 12:07:41 -0700
parents 6ec941f8704a
children ce9374c19169
comparison
equal deleted inserted replaced
25:6ec941f8704a 26:c6a042aad739
34 <table id="data"> 34 <table id="data">
35 <tr> 35 <tr>
36 <th>Buildbot Suite</th> 36 <th>Buildbot Suite</th>
37 <th>Buildbot Command</th> 37 <th>Buildbot Command</th>
38 <th>TBPL Name</th> 38 <th>TBPL Name</th>
39 <th>Paint</th>
40 <th>Chrome</th>
39 <th>Talos Tests</th> 41 <th>Talos Tests</th>
40 </tr> 42 </tr>
41 {{for suite in suites}} 43 {{for suite in suites}}
42 <tr> 44 <tr>
43 <td>{{suite}}</td> 45 <td>{{suite}}</td>
44 <td><tt>{{repr(commands[suite])}}</tt></td> 46 <td><tt>{{repr(commands[suite])}}</tt></td>
45 <td>{{tbpl[suite]}}</td> 47 <td>{{tbpl[suite]}}</td>
48 <td>{{paint[suite]}}</td>
49 <td>{{chrome[suite]}}</td>
46 <td> 50 <td>
47 {{if tests.get(suite)}} 51 {{if tests.get(suite)}}
48 <table> 52 <table>
49 <tr> 53 <tr>
50 <th>Talos Config</th> 54 <th>Talos Config</th>
61 {{endfor}} 65 {{endfor}}
62 </dl> 66 </dl>
63 </td> 67 </td>
64 <td> 68 <td>
65 <dl> 69 <dl>
66 {{for name, longname in api(test)}} 70 {{for name, longname in graphserver[suite][test]}}
67 <dt>{{name}}</dt> 71 <dt>{{name}}</dt>
68 <dd>{{longname}}</dd> 72 <dd>{{longname}}</dd>
69 {{endfor}} 73 {{endfor}}
70 </dl> 74 </dl>
71 </td> 75 </td>