-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
84 lines (83 loc) · 2.47 KB
/
index.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
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>רכבת פתוחה</title>
</head>
<body dir="rtl">
<h1>
<i class="fas fa-train"></i>
רכבת פתוחה
</h1>
<h2>מחקר מסלולים</h2>
<h4>
<span id="totals">
<span id="total_count"></span>
נסיעות
</span>
</h4>
<div>
<form class="form-inline" id="dates_form" method="get">
<div class="form-group mb-2">
<label for="start_date">
מתאריך
</label>
<input type="date" name="start_date" class="form-control" id="start_date"
required>
</div>
<div class="form-group mb-2">
<label for="end_date">
עד תאריך
</label>
<input type="date" name="end_date" class="form-control" id="end_date"
required>
</div>
<button type="submit" class="btn btn-primary mb-2">הצג</button>
</form>
</div>
<div id="wip">
<h3>
<i class="fa-2x fas fa-spinner fa-spin"></i>
טוען נתונים, עוד מעט...
</h3>
</div>
<div class="alert alert-danger alert-dismissible fade show" role="alert" style="display: none;" id="error-div">
<span id="error-text"></span>
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div id="charts">
<div class="row" id="charts-row">
</div>
<div class="row">
<div class="col-6">
<div class="card">
<div class="chart-header">
נסיעות מאחרות
</div>
<div id="lists">
<table id="trip-list" class="table">
<thead>
<tr>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
<footer>
<span style="float:right;">
<a href="http://otrain.org">רכבת פתוחה</a>
מנתחת את רמת הדיוק של רכבת ישראל בתקווה להועיל ולשפר את השירות.
</span>
</footer>
<script src="dist/all.js"></script>
</div>
</body>
</html>