Skip to content

Commit

Permalink
scores format
Browse files Browse the repository at this point in the history
  • Loading branch information
unStatiK committed Dec 29, 2024
1 parent 10b13bd commit 4e0aa18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion server/templates/player/details.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h4>{% trans 'Ratings' %}</h4>
{{ external_rating_result.place }}
</td>
<td>
{{ external_rating_result.base_rank }}
{{ external_rating_result.base_rank|floatformat:1 }}
</td>
</tr>
{% endfor %}
Expand Down
2 changes: 1 addition & 1 deletion server/templates/rating/_external_results_table.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
{% endwith %}
</td>
{% endif %}
<td>{{ rating_result.base_rank }}</td>
<td>{{ rating_result.base_rank|floatformat:1 }}</td>
{% if show_games_numbers %}
<td>{{ rating_result.game_numbers|default:'' }}</td>
{% endif %}
Expand Down

0 comments on commit 4e0aa18

Please sign in to comment.