mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-06-21 15:36:15 +00:00
20 lines
No EOL
458 B
HTML
20 lines
No EOL
458 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Score</th>
|
|
<th>Difficulty</th>
|
|
<th>Achievements</th>
|
|
<th>Player</th>
|
|
</tr>
|
|
{% for score in top_scores %}
|
|
<tr>
|
|
<td>{{ score.score }}</td>
|
|
<td>{{ score.difficulty }}</td>
|
|
<td>{{ score.achievements }}</td>
|
|
<td>{{ score.user.steam_name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %} |