-
Notifications
You must be signed in to change notification settings - Fork 0
/
userprintable.html
executable file
·71 lines (61 loc) · 1.21 KB
/
userprintable.html
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
<html>
<head>
<title>SOS Farms Users Printable</title>
<style type="text/css">
.users-table
{
padding: 5;
margin: 1;
border-collapse: collapse;
border: 2px solid #333;
font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
font-size: 1.0em;
color: #000000;
}
.users-table th, .users-table td
{
border: 1px dotted #666;
padding: 0.5em;
text-align: left;
color: #000000;
}
-->
</style>
</head>
<PRE>
<table border="1" class="users-table">
<tr>
<th>First Name</th>
<th>Last Name</th>
<th>Email</th>
<th>Phone</th>
<th>Address</th>
<th>City</th>
</tr>
{% for user in users %}
<tr>
<td>
{{user.firstname}}
</td>
<td>
{{user.lastname}}
</td>
<td>
{{user.email}}
</td>
<td>
{{user.phone}}
</td>
<td>
{{user.address}}
</td>
<td>
{{user.city}}
</td>
</tr>
{% endfor %}
</table>
</PRE>
<body>
</body>
</html>