view talosnames/templates/index.html @ 22:82d15f93cc4a

wip
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 10 Jul 2012 19:04:23 -0700
parents 48b4c926be73
children 56d267d847e1
line wrap: on
line source

<html>
<head>
<title>Talos Names</title>
<style>
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tr>
  <th>Buildbot Suite</th>
  <th>Buildbot Command</th>
  <th>TBPL Name</th>
  <th>Talos Tests</th>
</tr>
{{for suite in suites}}
<tr>
  <td>{{suite}}</td>
  <td><tt>{{repr(commands[suite])}}</tt></td>
  <td>{{tbpl[suite]}}</td>
  <td><pre>{{pprint(tests[suite])}}</pre></td>
</tr>
{{endfor}}
</table>
</body>
</html>