Show full name in the contest's scoreboard

This commit is contained in:
Luong Doan 2020-10-18 18:08:48 +00:00
parent 4e611259ed
commit cdf4768996
2 changed files with 25 additions and 0 deletions

View file

@ -7,6 +7,7 @@
<th>{{ _('Rating') }}</th>
{% endif %}
<th class="organization-column">{{ _('Organization') }}</th>
<th class="fullname-column" style="display: none;">Tên thật</th>
{% endblock %}
{% block after_rank %}
@ -20,6 +21,14 @@
</a></span>
{% endif %}
</td>
<td class="fullname-column" style="display: none;">
{% if user.user.first_name %}
<span class="fullname">
{{ user.user.first_name }}
</span>
{% endif %}
</td>
{% endblock %}
{% block user_data %}