-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreport.erb
75 lines (55 loc) · 1.38 KB
/
report.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<html>
<head>
<link rel="stylesheet" type="text/css" href="main.css">
</head>
<body>
<h1>We made a total of $<%= amount %> this week</h1>
<div class="bender">
<img src="http://vignette2.wikia.nocookie.net/bionicle/images/c/cd/Bender_dancing_animated.gif/revision/latest?cb=20080426120339">
</div>
<div class ="container">
<div class="t1">
<table border ="1">
<thead>
<tr>
<th> Destination</th>
<th>Shipment</th>
<th>Crates</th>
<th>Money (per planet)</th>
</tr>
</thead>
<tbody>
<% requires.each do |shipments, driver_name| %>
<tr>
<td> <%= shipments ["Destination"] %> </td>
<td> <%= shipments ["Shipment"]%> </td>
<td><%= shipments ["Crates"]%></td>
<td><%= shipments ["Money"]%></td>
</tr>
<% end %>
</tbody>
</table>
</div>
<div class="t2">
<table border ="1">
<thead>
<tr>
<th> Names </th>
<th>Trips</th>
<th>Bonus</th>
</tr>
</thead>
<tbody>
<% travel_data.each do |data| %>
<tr>
<td> <%= data ["Pilot"] %> </td>
<td> <%= data ["Number_trips"] %> </td>
<td> <%= data ["Bonus"]%> </td>
</tr>
<% end %>
</tbody>
</table>
</div>
</div>
</body>
</html>