-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_date.php
62 lines (49 loc) · 1.49 KB
/
index_date.php
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
<?php
require 'include.d/db_connect.php';
require 'include.d/functions.php';
$ice = add_ICETIME();
echo '
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Figure Skating Metrics</title>
<!-- Bootstrap core CSS -->
<link href="http://www.kami-nashi.com/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="http://www.kami-nashi.com/css/dashboard.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
</head>
<body>';
require 'include.d/menu_side.php';
require 'include.d/table_overview.php';
require 'include.d/chart_overview.php';
echo ' <div>';
require 'include.d/chart_coach-ratio.php';
require 'include.d/chart_ratio-coach.php';
echo ' </div>';
echo ' <div>';
# require 'include.d/chart_lines-ice_time.php';
require 'include.d/chart_maintenance.php';
require 'include.d/list_maintenance-hours.php';
echo ' </div>';
echo ' </section><h2>Session Metrics</h2>';
require 'include.d/data_form.php';
echo ' <div class="table-responsive">';
require 'include.d/table_sessions.php';
echo '
</tbody>
</table>
</div>
</main>
</div>
</div>
</script>
</body>
</html>
';
?>