feat: more infos in main view

This commit is contained in:
2023-06-16 15:32:04 +02:00
parent 441891da12
commit e784e98e1f
2 changed files with 36 additions and 2 deletions

View File

@@ -11,7 +11,9 @@
<th class="px-2">Personal Best</th>
{% endif %}
<th class="px-2">Record</th>
<th class="px-2">Record Holder</th>
<th class="px-2">Record Age</th>
<th class="px-2">Runner Up (%)</th>
</tr>
</thead>
<tbody>
@@ -23,8 +25,10 @@
{% if player %}
<td class="px-2">{{ map.get_best_for_player(player) }}</td>
{% endif %}
<td class="px-2">{{ map.get_best_replay_repr() }}</td>
<td class="px-2">{{ map.get_best_replay_repr().split(" ")[0] }}</td>
<td class="px-2">{{ map.get_best_replay().clean_login() }}</td>
<td class="px-2">{{ map.get_best_replay_age() }} days</td>
<td class="px-2">{{ map.get_record_replay_percent_diff() }}</td>
</tr>
{% endfor %}
</tbody>