-
Notifications
You must be signed in to change notification settings - Fork 0
/
matches.html
49 lines (46 loc) · 2.41 KB
/
matches.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/matches.css">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<title>Team Results</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.1/moment.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/chart.js/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns/dist/chartjs-adapter-date-fns.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/moment@^2"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-moment@^1"></script>
<script type="text/javascript" charset="utf8" src="js/matches.js"></script>
</head>
<body class="bg-light">
<div class="container mt-5">
<h1 class="mb-4"><a href="./"><i class="fa fa-home"></i></a> <a id="flagTitle"></a> <a id="h1title"></a></h1>
<div style="height: 400px;">
<canvas id="lineChart" width="600" height="400" style="margin: auto;"></canvas>
</div>
<table class="table table-striped" id="teamResultsTable">
<thead class="thead-dark">
<tr>
<th style="width:110px;">Date</th>
<th data-toggle="tooltip" title="Location of the match">Location</th>
<th data-toggle="tooltip" title="Tournament of the match">Tournament</th>
<th data-toggle="tooltip" title="Opponent of the match">Opponent</th>
<th data-toggle="tooltip" title="Level of the team">Lvl.1</th>
<th data-toggle="tooltip" title="Level of the opponent">Lvl.2</th>
<th data-toggle="tooltip" title="Victory chances for the team">Win%</th>
<th class="match" data-toggle="tooltip" title="Final score of the match">Score</th>
<th data-toggle="tooltip" title="Level and Points evolution for the team">New Level</th>
<th data-toggle="tooltip" title="Rank of the team after the match">Rank</th>
</tr>
</thead>
<tbody id="team-results-body">
<!-- Results will be inserted here -->
</tbody>
</table>
</div>
</body>
</html>