Files
2022-08-14 12:54:45 +02:00

49 lines
1.5 KiB
HTML

<!doctype html>
<head>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<title>Demo Analyzer</title>
</head>
<body>
<header class="page-header container">
<h1><a href="/">Demo Analyzer</a></h1>
</header>
<nav class="container"></nav>
<main class="container">
{% if player is defined %}
<div class="panel panel-default" style="border-top:2px solid {{ rating }}">
<div class="panel-heading" style="border-top:2px solid {{ rating }}">
<h4>{{ player[21] }}</h4>
</div>
<table class="list-group">
<tr class="list-group-item">
<th class="table-title">Rating</th>
<th class="table-title">Kills</th>
<th class="table-title">Deaths</th>
<th class="table-title">Assists</th>
<th class="table-title">Kast</th>
<th class="table-title">HS %</th>
<th class="table-title">ADR</th>
<th class="table-title">Accuracy %</th>
<th class="table-title">Trade kills</th>
<th class="table-title">Utility damage</th>
<th class="table-title">Flash time (avg)</th>
</tr>
<tr class="list-group-item">
<th>{{ player[22] }}</th>
<th>{{ player[19] }}</th>
<th>{{ player[6] }}</th>
<th>{{ player[4] }}</th>
<th>{{ player[17] }}</th>
<th>{{ (player[16]*100)|int }} %</th>
<th>{{ player[3] }}</th>
<th>{{ (player[2]*100)|int }} %</th>
<th>{{ player[35] }}</th>
<th>{{ player[36] }}</th>
<th>{{ (player[5] / player[8]) | round(2, 'common') }}</th>
</tr>
</table>
</div>
{% endif %}
</main>
</body>