-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo-batch.html
41 lines (36 loc) · 1.13 KB
/
demo-batch.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Air Batch - Batch DEMO</title>
<script src="Brython-3.7.1/brython.js"></script>
<script src="Brython-3.7.1/brython_stdlib.js"></script>
<link rel="stylesheet" type="text/css" href="airbatch.css">
</head>
<body onload="brython({pythonpath: ['.', '/static/py/']})">
<select size="5" id="aircraft" class="info aircraft"></select>
<select size="5" id="pilot" class="info pilot"></select>
<select size="5" id="location" class="info location"></select>
<textarea id="editor"></textarea>
<button id="btn-parse">Parse</button>
<table id="result">
<thead>
<tr>
<td>Line</td>
<td>Date</td>
<td>Aircraft</td>
<td>Pilot</td>
<td>Co-Pilot</td>
<td>Takeoff</td>
<td>in</td>
<td>Touchdown</td>
<td>in</td>
<td>Duration</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
<script type="text/python" src="demo-batch.py"></script>
</body>
</html>