blob: 7a62a147e40471159a08e60f8bc9e2442ac39401 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
<!DOCTYPE html>
<html>
<head>
<title>JI Umbrella</title>
<link rel="stylesheet" href="static/jimbrella.css" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<h1>JI Umbrella Overview</h1>
<div id="container">
<!--Takes up full width of container-->
<div class="banner-container">
{% if overdue %}
<div class="banner overdue">
<h2 class="banner-heading">Overdue</h2>
<table>
<tr>
<td>#</td>
<td>Tenant</td>
<td>Phone</td>
<td>Lent</td>
</tr>
{% for umb in overdue %}
<tr>
<td>{{ umb.serial }}</td>
<td>{{ umb.tenant_name }}</td>
<td>{{ umb.tenant_phone }}</td>
<td>{{ umb.lent_time_ago_str }} ago</td>
</tr>
{% endfor %}
</table>
</div>
{% endif %}
</div>
<!--Tiles displaying minimal data-->
<div class="tile-container">
<div class="tile lent">
<h2 class="tile-heading">Lent</h2>
<strong class="big">{{ lent|length }}</strong> / {{ umbrellas|length }}
</div>
<div class="tile available">
<h2 class="tile-heading">Available</h2>
<strong class="big">{{ available|length }}</strong> / {{ umbrellas|length }}
</div>
</div>
</div>
</body>
</html>
|