-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
117 lines (109 loc) · 4.02 KB
/
admin.html
File metadata and controls
117 lines (109 loc) · 4.02 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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html lang="en">
<head>
<title>System configuration</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
<link rel="stylesheet" href="js/ol3/ol.css" type="text/css">
<link rel="stylesheet" href="js/ol3/ol3-popup.css" type="text/css">
<link rel="stylesheet" href="css/layout.css" type="text/css">
<link rel="stylesheet" href="css/site.css" type="text/css">
<link rel="stylesheet" href="css/editor.dataTables.min.css" type="text/css">
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/1.10.8/css/jquery.dataTables.css">
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/responsive/1.0.5/css/dataTables.responsive.css">
<link rel="stylesheet" type="text/css" href="//cdn.datatables.net/tabletools/2.2.4/css/dataTables.tableTools.css">
<script src="js/ol3/ol.js" type="text/javascript"></script>
<script src="js/ol3/ol3-popup.js" type="text/javascript"></script>
<script src="js/joose.min.js" type="text/javascript"></script>
<script src="js/rbush.js" type="text/javascript"></script>
<script type="text/javascript" src="//ecn.dev.virtualearth.net/mapcontrol/mapcontrol.ashx?v=7.0"></script>
<script type="text/javascript" src="js/jquery-2.1.3.min.js"></script>
<script type="text/javascript" language="javascript" src="//cdn.datatables.net/1.10.8/js/jquery.dataTables.js"></script>
<script type="text/javascript" language="javascript" src="//cdn.datatables.net/responsive/1.0.5/js/dataTables.responsive.min.js"></script>
<script type="text/javascript" language="javascript" src="//cdn.datatables.net/tabletools/2.2.4/js/dataTables.tableTools.min.js"></script>
<script type="text/javascript" language="javascript" src="js/dataTables.editor.js"></script>
<script type="text/javascript" src="//gabelerner.github.io/canvg/rgbcolor.js"></script>
<script type="text/javascript" src="//gabelerner.github.io/canvg/StackBlur.js"></script>
<script type="text/javascript" src="//gabelerner.github.io/canvg/canvg.js"></script>
<script src="build/admin.js" type="text/javascript"></script>
</head>
<body class="editor wide">
<a name="top"></a>
<div class="fw-container">
<div class="button-status">
STATUS
</div>
<div class="button-gpx">
GPX
</div>
<!--
<div class="fw-header">
<img src="/media/images/logo-fade.png" class="logo">
<div class="nav-master">
<ul>
<li class="active" id="nav1"><a>Athletes</a></li>
<li id="nav2"><a>Events</a></li>
</ul>
</div>
</div>
-->
<div class="fw-body">
<div class="content" id="tab3">
<h1 class="page_title">Event data</h1>
<div class="info">
<p>Current event configuration data</p>
</div>
<table id="table-events" class="display responsive nowrap" cellspacing="0" width="100%">
<thead>
<tr>
<th>CODE</th>
<th>START</th>
<th>END</th>
<th>TRK</th>
<th>BIKESTRT</th>
<th>RUNSTRT</th>
</tr>
</thead>
<tfoot>
<tr>
<th>CODE</th>
<th>START</th>
<th>END</th>
<th>TRK</th>
<th>BIKESTRT</th>
<th>RUNSTRT</th>
</tr>
</tfoot>
</table>
</div>
</div>
<div class="fw-footer">
<div class="copyright">
Copyright...
</div>
</div>
</div>
<div id="map" class="map_fullscreen" style="display:none;z-index:9999;background-color:white;">
<div class="map_buttons">
<div id="button_erase" class="map_button">
<img src="img/erase.png"/>
</div>
<div id="button_join" class="map_button">
<img src="img/join.png"/>
</div>
<div id="button_navigate" class="map_button">
<img src="img/navigate.png"/>
</div>
<div id="button_submit" class="map_button">
<img src="img/submit.png"/>
</div>
<div id="button_cancel" class="map_button">
<img src="img/cancel.png"/>
</div>
<textarea id="route_text_area" readonly></textarea>
<textarea id="route_info" readonly></textarea>
</div>
</div>
</body>
</html>