Skip to content

Commit

Permalink
Try to change display name on wr page
Browse files Browse the repository at this point in the history
  • Loading branch information
BrennanB committed Aug 14, 2024
1 parent 9553242 commit a1105a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions highscores/templates/highscores/world_records.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ <h2 class="text-center">World Records Count Per Player</h2>
<tbody>
{% for player, count in player_counts %}
<tr>
<td>{{ player }}</td>
<td>{{ player.id }}</td>
<td style="text-align: center">{{ count }}</td>
</tr>
{% endfor %}
Expand All @@ -40,7 +40,7 @@ <h2 class="text-center">Individual World Records</h2>
<tr>
<td style="text-align: center"><b>{{ forloop.counter }}</b></td>
<td>
<a href="/user/{{ record.player.id }}" style="color: #fff">{{ record.player.username }}</a>
<a href="/user/{{ record.player.id }}" style="color: #fff">{{ record.player.id }}</a>
</td>
<td style="text-align: center">{{ record.score }}</td>
<td style="text-align: center">{{ record.leaderboard.game }} - {{ record.robot_name }}</td>
Expand Down

0 comments on commit a1105a5

Please sign in to comment.