Files
open-web-leaderboard/templates/rounds.html
Yannik Schmidt 59aaa672c1 minor fixes
2020-09-29 07:56:29 +02:00

57 lines
2.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>Rounds Played</title>
<meta name="Description" content="Insurgency games played on the AtlantisHQ">
<link rel="stylesheet" type="text/css" href="/static/site.css">
<link rel="shortcut icon" href="/static/defaultFavicon.ico">
<!-- needed for @media-css mofiers -->
<meta content="width=device-width, initial-scale=1" name="viewport" />
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="static/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="static/bootstrap/css/mdb.min.css" rel="stylesheet">
<script src="static/bootstrap/js/jquery.js"></script>
<script src="static/bootstrap/js/popper.js"></script>
<script src="static/bootstrap/js/bootstrap.js"></script>
<script src="static/bootstrap/js/mdb.min.js"></script>
</head>
<body class="bg-special">
{% include 'navbar.html' %}
<div class="container mt-3 mb-3" role="main">
<table id="tableMain" class="table table-striped table-bordered table-sm"
cellspacing="0" width="100%">
<thead>
<tr>
<th class="th-sm">Map</th>
<th class="th-sm">Winner</th>
<th class="th-sm">Duration</th>
<th class="th-sm">Start Time</th>
<th class="th-sm">Rating System Winner Prediction</th>
<th class="th-sm">Confidence</th>
</tr>
</thead>
<tbody>
{% for r in rounds %}
<tr>
<td>{{ r.mapName }}</td>
<td>{{ r.winnerSideString }}</td>
<td>{{ r.duration }}</td>
<td>{{ r.startTime.strftime('%H:%M %d.%m.%Y') }}</td>
<td>{{ r.prediction }}</td>
<td>{{ r.confidence }}%</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% include 'footer.html' %}
</body>
</html>