-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-reports.html
72 lines (55 loc) · 1.4 KB
/
all-reports.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
71
72
<!--
All reports
-->
<!DOCTYPE html>
<html>
<head>
<title>All Reports</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.css" />
<script src="http://code.jquery.com/jquery-1.8.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0-rc.2/jquery.mobile-1.2.0-rc.2.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>All Reports</h1>
<a href="index.html" data-icon="home" data-direction="reverse">Home</a>
</div><!-- /header -->
<div data-role="content">
<table summary="This table lists all the JetBlue flights.">
<caption>Recent Reports</caption>
<thead>
<tr>
<th scope="col">Report</th>
<th scope="col">Data</th>
<th scope="col"></th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="5">Total: 3 reports</td>
</tr>
</tfoot>
<tbody>
<tr>
<th scope="row">Weight</th>
<td>Today - 62.4 KG</td>
<td>edit</td>
</tr>
<tr>
<th scope="row">Weight</th>
<td>Yesterday - 62.2 KG</td>
<td>edit</td>
</tr>
<tr>
<th scope="row">Weight</th>
<td>Thursday 27th - 62.1 KG</td>
<td>edit</td>
</tr>
</tbody>
</table>
</div><!-- /content -->
</div><!-- /page -->
</body>
</html>