-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindexQsoHistory.html
More file actions
44 lines (43 loc) · 1.47 KB
/
indexQsoHistory.html
File metadata and controls
44 lines (43 loc) · 1.47 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Security-Policy" content="script-src 'self' 'unsafe-inline';" />
<title>JS8Assistant</title>
<link rel="stylesheet" href="./node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./node_modules/tabulator-tables/dist/css/tabulator.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-sm-10">
<h1>QSO History</h1>
<div id="callsign">
<h4>VA1UAV</h4>
</div>
</div>
</div>
<div class="row">
<div class="col">
<div id="data-table"></div>
</div>
</div>
<div class="row">
<div class="col">
<div class="card mt-3" style="height:300px">
<div class="card-body scroll">
<h4 class="card-title">QSO Text:</h4>
<div id="qso-data">
<p></p>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="./node_modules/tabulator-tables/dist/js/tabulator.min.js"></script>
<script src="./indexQsoHistory.js"></script>
</body>
</html>