Add full name to user tables

This commit is contained in:
cuom1999 2020-12-29 20:29:50 -06:00
parent 4502dbf6b9
commit 0adbc74d95
7 changed files with 489 additions and 323 deletions

View file

@ -10,11 +10,19 @@
</svg>
</span>
{%- if sort_links %}{{ sort_order.rating }}</a>{% endif %}
<th class="fullname-column">{{ _('Full Name') }}</th>
</th>
{% endblock %}
{% block after_rank %}
<td>{% if user.rating %}{{ rating_number(user) }}{% endif %}</td>
<td class="fullname-column">
{% if user.user.first_name %}
<span class="fullname">
{{ user.user.first_name }}
</span>
{% endif %}
</td>
{% endblock %}
{% block after_point_head %}