-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
192 lines (179 loc) · 9.49 KB
/
dashboard.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<html>
<head>
{% include "basehead.inc" %}
</head>
<body>
<div class="page-header black">
<div class="container">
<h1>Arbeitszeiten</h1>
Hallo {{ username }} - hier werden alle deinen geofency Einträge gespeichert.
</div>
</div>
{% if msg %}
<div class="alert alert-danger" role="alert">
{{ msg }}
</div>
{% endif %}
<div class="row container">
<div class="col-md-6">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">Start</a></li>
<li><a data-toggle="tab" href="#times">Arbeitszeiten</a></li>
<li><a data-toggle="tab" href="#form">Von Hand testen</a></li>
<li><a data-toggle="tab" id="config-tab" href="#config">Configuration</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<h2>Übersicht</h2>
<ul class="list-group">
<li class="list-group-item">
Du hast {% trans count=registered_devices%}eine registrierte
{% pluralize %}{{ registered_devices}} registrierte
{% endtrans %} und
{% trans count=unregistered_devices%}eine unregistrierte App
{% pluralize %}{{ unregistered_devices}} unregistrierte Apps
{% endtrans %}.
{% if unregistered_devices>0 %}
<div class="alert alert-danger" role="alert">
Willst du unbekannte Apps <a onClick="$('#config-tab').tab('show')" href="#config">blockieren</a>?
</div>
{% endif %}
</li>
<li class="list-group-item">
{% if geofency %}
Du hast seit {{ geofency[0].event }}
{% trans count=geofency|length %}einen Eintrag
{% pluralize %} {{ registered_devices}} Einträge
{% endtrans %} offen.
{% else %}
<div class="alert alert-danger" role="alert">
Du hast keine Geofency Einträge - ist deine App <a onClick="$('#config-tab').tab('show')" href="#config">registriert</a>?
</div>
{% endif %}
</li>
</ul>
</div>
<div id="times" class="tab-pane fade">
{% if timings %}
<div class="alert alert-danger" role="alert">
Arbeitszeiten über Nacht werden nicht berechnet, wenn du
<a onClick="$('#config-tab').tab('show')" href="#config">kein Ort für zu Hause registriert</a> hast.
</div>
<table class="table table-condensed">
<thead>
<tr>
<th>Datum</th><th>Von</th><th>bis</th><th>Pause</th><th>Dauer</th><th>Ort</th>
</tr>
</thead>
<tbody>
{% for t in timings %}
<tr>
<td>{{ t['start'].date() }}</td>
<td>{{ t['start'].time()|timeformat }}</td>
<td>{{ t['end'].time()|timeformat }}</td>
<td>{{ t['pause']|deltaformat }}</td>
<td>{{ t['booking']|deltaformat}}</td>
<td>{{ t['name'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<h2>Keine Zeiten gespeichert.</h2>
{% endif %}
</div>
<div id="form" class="tab-pane fade ">
<form id="debugForm" method="post" class="" >
<div class="form-group">
<label for="Fname">Ort:</label>
<input id="Fname" name="name" placeHolder="Enter location name">
</div>
<div class="form-group">
<label for="f_entry">Eintrag</label>
<select name="entry" id="f_entry">
<option value="0">Ankommen</option>
<option value="1">Abfahren</option>
<option value="2">1 Stunde buchen</option>
</select>
</div>
<div class="form-group">
<label for="f_date">Datum & Uhrzeit</label>
<input type="datetime-local" id="f_date" name="date" placeHolder="date & time">
<span class="btn btn-default"
onClick="$('#f_date').val(new Date().toISOString().slice(0,16))">⏱
</span>
<span class="btn btn-default"
onClick="$('#f_date').val(new Date(new Date($('#f_date').val()).getTime()+3600000).toISOString().slice(0,16))">+1h
</span>
</div>
<div class="form-group">
<label for="Flat">Position:lat</label>
<input id="Flat" name="latitude" placeHolder="latitude">
</div>
<div class="form-group">
<label for="f_long">Position:long</label>
<input id="f_long" name="longitude" placeHolder="longitude">
</div>
<div class="form-group">
<label for="f_device">Gerät</label>
<input id="f_device" name="device" placeHolder="name of device"><br/>
</div>
<input type="submit" value="save it">
</form>
</div>
<div id="config" class="tab-pane fade">
{% if apikey %}
<h2>API-URL</h2>
Trage folgende URL in deiner APP ein. Diese URL ist nicht geschützt, da wenige Apps eine
Authentifikation unterstützen. Du kannst aber später unbekannte Zugriffe sperren/löschen.
<div>
<pre>http://{{hostname}}/api/{{apikey}}</pre>
</div>
{% endif %}
{% include "dashboard_devices.inc" %}
<h2>Orte bestimmen</h2>
{% include "dashboard_locations.inc" %}
{% if locations %}
<div class="info" role="info">
{% if geofency %} Willst du weitere Orte aus den geofancy Daten <a href="/mapedit">übernehmen</a>?
{% endif %}
</div>
{% else %}
<div class="alert alert-danger" role="alert">
Es sind keine Orte gespeichert.
{% if geofency %} Willst du Orte aus den letzten geofency Daten <a href="/mapedit">übernehmen</a>?
{% endif %}
</div>
{% endif %}
</div>
</div>
</div>
<div class="col-md-6">
<table class="table table-condensed">
<thead>
<tr><th colspan="5">Alle geofancy daten</th></tr>
<tr><th>Ort</th><th>Datum</th><th>Eintrag</th><th>Position</th><!--th>Gerät</th--></tr>
</thead>
<tbody>
{% for geo in geofency %}
<tr>
<td>{{ geo.name }}</td>
<td>{{ geo.event|datetimeformat }}</td>
<td>{{ geo.entry==0 and 'Angekommen' or 'Abgefahren' }}</td>
<td>{{ geo.pos.lat }} / {{ geo.pos.lon }}</td>
<!--td>{{ geo.device }}</td-->
</tr>
{% else %}
<tr>
<td colspan="5">
<h1>Keine Daten</h1>
Bitte integriere deine Geofancy App mit dem Webservice oder trage testweise Daten ein.
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</body>
</html>