comparison talosnames/templates/index.html @ 24:56d267d847e1

more progress
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 10 Jul 2012 21:36:24 -0700
parents 82d15f93cc4a
children 6ec941f8704a
comparison
equal deleted inserted replaced
23:5f39ce13fbbc 24:56d267d847e1
18 {{for suite in suites}} 18 {{for suite in suites}}
19 <tr> 19 <tr>
20 <td>{{suite}}</td> 20 <td>{{suite}}</td>
21 <td><tt>{{repr(commands[suite])}}</tt></td> 21 <td><tt>{{repr(commands[suite])}}</tt></td>
22 <td>{{tbpl[suite]}}</td> 22 <td>{{tbpl[suite]}}</td>
23 <td><pre>{{pprint(tests[suite])}}</pre></td> 23 <td>
24 {{if tests.get(suite)}}
25 <table>
26 <tr>
27 <th>Talos Config</th>
28 <th>Graphserver Name</th>
29 </tr>
30
31 {{for test in sorted(tests[suite].keys())}}
32 <tr>
33 <td><b>{{test}}</b>
34 <dl>
35 {{for attr in sorted(tests.get(suite, {})[test].keys())}}
36 <dt>{{attr}}</dt>
37 <dd>{{tests[suite][test][attr]}}</dd>
38 {{endfor}}
39 </dl>
40 </td>
41 <td>
42 <dl>
43 {{for name, longname in api(test)}}
44 <dt>{{name}}</dt>
45 <dd>{{longname}}</dd>
46 {{endfor}}
47 </dl>
48 </td>
49 </tr>
50 {{endfor}}
51 </table>
52 {{endif}}
53 </td>
24 </tr> 54 </tr>
25 {{endfor}} 55 {{endfor}}
26 </table> 56 </table>
27 </body> 57 </body>
28 </html> 58 </html>