comparison talosnames/templates/index.html @ 38:ef8590b55605

determine actually correct name extension
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 24 Jul 2012 11:12:07 -0700
parents c945731f06d0
children ff2f0788e91b
comparison
equal deleted inserted replaced
37:0d5cd3dccbec 38:ef8590b55605
25 25
26 dt::after { content: ": "; } 26 dt::after { content: ": "; }
27 27
28 .header { 28 .header {
29 font-weight: bold; 29 font-weight: bold;
30 align: center;
31 text-align: center;
32 } 30 }
33 31
34 .tbpl_initial { 32 .tbpl_initial {
35 font-weight: bold; 33 font-weight: bold;
36 color: green; 34 color: green;
115 {{for suite in suites}} 113 {{for suite in suites}}
116 <tr> 114 <tr>
117 <td class="buildbot">{{suite}}</td> 115 <td class="buildbot">{{suite}}</td>
118 <td class="command">{{list2cmdline(commands[suite])}}</tt></td> 116 <td class="command">{{list2cmdline(commands[suite])}}</tt></td>
119 <td class="tbpl">{{tbpl[suite]}}</td> 117 <td class="tbpl">{{tbpl[suite]}}</td>
120 <td class="paint">{{paint.get(suite, '')}}</td> 118 <td class="paint"><span title="Paint">{{paint.get(suite, '')}}</span></td>
121 <td class="chrome">{{chrome.get(suite, '')}}</td> 119 <td class="chrome"><span title="Chrome">{{chrome.get(suite, '')}}</span></td>
122 <td class="tests"> 120 <td class="tests">
123 {{if tests.get(suite)}} 121 {{if tests.get(suite)}}
124 <table> 122 <table>
125 <tr> 123 <tr>
126 <th>Talos Config</th> 124 <th>Talos Config</th>
128 </tr> 126 </tr>
129 127
130 {{for test in sorted(tests[suite].keys())}} 128 {{for test in sorted(tests[suite].keys())}}
131 <tr> 129 <tr>
132 <td> 130 <td>
131 <i>{{test_type[suite][test]}}</i>
133 <div class="header testname">{{test}}</div> 132 <div class="header testname">{{test}}</div>
134 <dl class="testattributes"> 133 <dl class="testattributes">
135 {{for attr in sorted(tests.get(suite, {})[test].keys())}} 134 {{for attr in sorted(tests.get(suite, {})[test].keys())}}
136 <dt>{{attr}}</dt> 135 <dt>{{attr}}</dt>
137 <dd>{{tests[suite][test][attr]}}</dd> 136 <dd>{{tests[suite][test][attr]}}</dd>