-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathharvestprintable.html
More file actions
executable file
·65 lines (52 loc) · 1.19 KB
/
harvestprintable.html
File metadata and controls
executable file
·65 lines (52 loc) · 1.19 KB
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
<html>
<head>
<title>SOS Farms Harvest Printable</title>
<style type="text/css">
.print-table
{
padding: 5;
margin: 1;
border-collapse: collapse;
border: 2px solid #333;
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 0.6em;
color: #000000;
}
.print-table th, .print-table td
{
border: 1px dotted #666;
padding: 0.5em;
text-align: left;
color: #000000;
}
-->
</style>
</head>
<body>
<table border="1" class="print-table">
<tr>
<th>User</th>
{% for h in list_header %}
<th> {{ h.name }}</th>
{% endfor %}
<th>Total Charge</th>
</tr>
{% for upo in user_pos %}
<tr>
<td>{{ upo.user_info.firstname }} {{ upo.user_info.lastname }}</td>
{% for q in upo.quat_list %}
<td>{{ q }}</td>
{% endfor %}
<td>{{upo.total_charge_str}}</td>
</tr>
{% endfor %}
<tr>
<td>Totals</td>
{% for t in totals %}
<td>{{ t }}</td>
{% endfor %}
<td>{{total_collect}}</td>
</tr>
</table>
</body>
</html>