Color first place(s) red in leaderboard
All checks were successful
Build Formula10 Docker Image / build-docker (push) Successful in 13s

This commit is contained in:
2024-03-02 18:00:56 +01:00
parent 162423ec84
commit 0a94222cb2

View File

@ -25,8 +25,9 @@
<tbody>
{% for user in points.users_sorted_by_points() %}
<tr>
<td class="text-center text-nowrap">{{ points.user_standing()[user.name] }}</td>
{% set user_standing = points.user_standing()[user.name] %}
<tr class="{% if user_standing == 1 %}table-danger{% endif %}">
<td class="text-center text-nowrap">{{ user_standing }}</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>