Combine places with equal points in leaderboard
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 14s

This commit is contained in:
2024-03-02 17:58:06 +01:00
parent fcc29d2372
commit 162423ec84
2 changed files with 19 additions and 1 deletions

View File

@ -26,7 +26,7 @@
<tbody>
{% for user in points.users_sorted_by_points() %}
<tr>
<td class="text-center text-nowrap">{{ loop.index }}</td>
<td class="text-center text-nowrap">{{ points.user_standing()[user.name] }}</td>
<td class="text-center text-nowrap">{{ user.name }}</td>
<td class="text-center text-nowrap">{{ points.total_points_by(user.name) }}</td>
<td class="text-center text-nowrap">{{ points.picks_count(user.name) }}</td>