Add full name to user tables
This commit is contained in:
parent
4502dbf6b9
commit
0adbc74d95
7 changed files with 489 additions and 323 deletions
|
@ -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 %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue