-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimetracker.html
More file actions
69 lines (61 loc) · 2.44 KB
/
timetracker.html
File metadata and controls
69 lines (61 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<title>Timetracker</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" media="screen" href="assets/stylesheets/bootstrap.min.css">
<link rel="stylesheet" media="screen" href="assets/stylesheets/bootstrap-multiselect.css">
<link rel="stylesheet" media="screen" href="assets/stylesheets/bootstrap-theme.css">
<link rel="stylesheet" media="screen" href="assets/stylesheets/bootstrap-datatables.css">
<link rel="stylesheet" media="screen" href="assets/stylesheets/main.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>Timetracker</h1>
</div>
<table id="timetable" class="table table-condensed table-striped timetable">
<thead>
<tr>
<th>Tag</th>
<th>Start</th>
<th>Ende</th>
<th>Pause</th>
<th>Dauer</th>
<th>Start ¼</th>
<th>Ende ¼</th>
<th>Pause ¼</th>
<th>Dauer ¼</th>
<th>Projekt</th>
<th>Kommentar</th>
</tr>
</thead>
<tfoot>
<tr>
<th colspan="3">SUMME</th>
<th>Dauer</th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
<th></th>
</tr>
</tfoot>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
<!-- Javascript files -->
<script src="assets/javascripts/vendor/jquery.min.js"></script>
<script src="assets/javascripts/vendor/jquery.dataTables.min.js"></script>
<script src="assets/javascripts/vendor/bootstrap.min.js"></script>
<script src="assets/javascripts/config.js"></script>
<script src="assets/javascripts/main.js"></script>
</body>
</html>