66 lines
2.6 KiB
HTML
66 lines
2.6 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block navbar %}
|
|
<nav class="navbar navbar-expand-lg navbar-light bg-light">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">The Hanabi Pro Hunting League</a><a class="navbar-brand" href="#"><small class="text-muted">- Endgame Statistics for {{game_id}}</small></a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
<div class="collapse navbar-collapse" id="navbarNav">
|
|
<ul class="navbar-nav ml-auto">
|
|
<li class="nav-item">
|
|
<a class="nav-link" id="Back" href="/">Back</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="tab-content" id="myTabContent">
|
|
<div class="tab-pane fade show active" id="overview">
|
|
<div class="container my-5">
|
|
<h3>
|
|
Statistics for game {{game_id}}
|
|
</h3>
|
|
<ul>
|
|
<li>
|
|
Replay: <a href="https://hanab.live/replay/{{game_id}}">https://hanab.live/replay/{{game_id}}</a>
|
|
</li>
|
|
<li>
|
|
Shared Replay: <a href="https://hanab.live/shared-replay/{{game_id}}">https://hanab.live/shared-replay/{{game_id}}</a>
|
|
</li>
|
|
</ul>
|
|
<h4>
|
|
Endgame Analysis table
|
|
</h4>
|
|
<table class="endgame-table">
|
|
<tr>
|
|
<th>Turn</th>
|
|
<th>Action</th>
|
|
<th>Fractional Probability</th>
|
|
<th>Probability</th>
|
|
</tr>
|
|
{% for (turn, best_action, other_actions) in data %}
|
|
<tr>
|
|
<td rowspan="{{ other_actions|length + 1 }}"><a href="https://hanab.live/replay/{{game_id}}#{{turn}}">{{ turn }}</td>
|
|
<td>{{ best_action.description }}</td>
|
|
<td>{{ best_action.enumerator }}/{{ best_action.denominator }}</td>
|
|
<td>{{ best_action.win_rate }}%</td>
|
|
</tr>
|
|
{% for action in other_actions %}
|
|
<tr>
|
|
<td>{{ action.description }}</td>
|
|
<td>{{ action.enumerator }}/{{ action.denominator }}</td>
|
|
<td>{{ action.win_rate }}%</td>
|
|
</tr>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|