modified: templates/leaderboard.html

This commit is contained in:
SimolZimol
2024-10-31 13:44:59 +01:00
parent 171770b9ee
commit a633b38858

View File

@@ -38,11 +38,9 @@
{% for index, user in enumerate(leaderboard, start=1) %} {% for index, user in enumerate(leaderboard, start=1) %}
<tr> <tr>
<td>{{ index }}</td> <td>{{ index }}</td>
<td>
<td> <td>
<img src="{{ get_profile_picture(user.user_id, user.profile_picture) }}" alt="Profile Picture" class="profile-picture"> <img src="{{ get_profile_picture(user.user_id, user.profile_picture) }}" alt="Profile Picture" class="profile-picture">
</td> </td>
</td>
<td>{{ user.nickname or 'Unknown User' }}</td> <td>{{ user.nickname or 'Unknown User' }}</td>
<td>{{ user.level }}</td> <td>{{ user.level }}</td>
<td>{{ user.xp }}</td> <td>{{ user.xp }}</td>