comparison talosnames/templates/index.html @ 29:905daa511aa4

minor improvements
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 17 Jul 2012 14:17:41 -0700
parents 892dd6b58f05
children c6580ad2612f
comparison
equal deleted inserted replaced
28:892dd6b58f05 29:905daa511aa4
1 <html> 1 <html>
2 <head> 2 <head>
3 <title>Talos Names</title> 3 <title>Talos Names</title>
4 <style> 4 <style>
5 * {
6 font-family: sans-serif;
7 }
8
9 td.command {
10 font-family: monospace;
11 }
12
5 table, th, td { 13 table, th, td {
6 border: 1px solid black; 14 border: 1px solid black;
7 } 15 }
8 dt { 16 dt {
9 font-style: italic; 17 font-style: italic;
31 </script> 39 </script>
32 </head> 40 </head>
33 <body> 41 <body>
34 <table id="data"> 42 <table id="data">
35 <tr> 43 <tr>
36 <th>Buildbot Suite</th> 44 <th class="buildbot">Buildbot Suite</th>
37 <th>Buildbot Command</th> 45 <th class="command">Buildbot Command</th>
38 <th>TBPL Name</th> 46 <th class="tbpl">TBPL Name</th>
39 <th>Paint</th> 47 <th class="paint">Paint</th>
40 <th>Chrome</th> 48 <th class="chrome">Chrome</th>
41 <th>Talos Tests</th> 49 <th class="tests">Talos Tests</th>
42 </tr> 50 </tr>
43 {{for suite in suites}} 51 {{for suite in suites}}
44 <tr> 52 <tr>
45 <td>{{suite}}</td> 53 <td class="buildbot">{{suite}}</td>
46 <td><tt>{{repr(commands[suite])}}</tt></td> 54 <td class="command">{{repr(commands[suite])}}</tt></td>
47 <td>{{tbpl[suite]}}</td> 55 <td class="tbpl">{{tbpl[suite]}}</td>
48 <td>{{paint.get(suite, '')}}</td> 56 <td class="paint">{{paint.get(suite, '')}}</td>
49 <td>{{chrome.get(suite, '')}}</td> 57 <td class="chrome">{{chrome.get(suite, '')}}</td>
50 <td> 58 <td class="tests">
51 {{if tests.get(suite)}} 59 {{if tests.get(suite)}}
52 <table> 60 <table>
53 <tr> 61 <tr>
54 <th>Talos Config</th> 62 <th>Talos Config</th>
55 <th>Graphserver Name</th> 63 <th>Graphserver Name</th>