Fix ranking csv file

This commit is contained in:
Zhao 2022-10-09 06:34:19 +07:00
parent d060259396
commit f3fef31e8d
2 changed files with 8 additions and 4 deletions

View file

@ -10,7 +10,7 @@
{% block after_rank %}
{% if has_rating %}
<td>{% if user.participation_rating %}{{ rating_number(user.participation_rating) }}{% endif %}</td>
<td class="rating-column">{% if user.participation_rating %}{{ rating_number(user.participation_rating) }}{% endif %}</td>
{% endif %}
{% endblock %}
@ -57,6 +57,7 @@
<th class="points header problem-score-col" title="{{ problem.problem.name }}"><a href="{{ url('problem_detail', problem.problem.code) }}">
{{- contest.get_label_for_problem(loop.index0) }}
<div class="point-denominator">{{ problem.points }}</div>
<div class="problem-code" style="display: none;">{{ problem.problem.code }}</div>
</a></th>
{% endfor %}
{% endblock %}