blob: c820263a768b5f3244fc17985fa1fadc80d5e2ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!DOCTYPE html>
<html>
<head>
<title>BrewBot: <%= @test.name %></title>
<title>BrewBot</title>
<style>
<%= css %>
</style>
</head>
<body>
<div>
<h1><a href="../index.html">BrewBot</a></h1>
<h2><%= @test.name %> <%= DateTime.now.strftime "%T %D" %></h2>
<table>
<% for step in @test.steps %>
<tr>
<td><span class="prompt">$</span> <%= step.command %></td>
<td class='status <%= step.status %>'><a href='<%= step.log_file_path false %> '><%= step.status_upcase %></a></td>
</tr>
<% end %>
</table>
</div>
</body>
</html>
|