<thead> <tr> <th class="header rank">{{ rank_header or _("Rank") }}</th> {% block after_rank_head %}{% endblock %} <th class="header username">{{ _('Username') }}{% block username_head_extra %}{% endblock %}</th> {% block before_point_head %}{% endblock %} <th class="header points"> {% if sort_links %}<a href="{{ sort_links.performance_points }}">{% endif %} {{ _('Points') }} {%- if sort_links %}{{ sort_order.performance_points }}</a>{% endif %} </th> {% block after_point_head %}{% endblock %} </tr> </thead> <tbody> {% for rank, user in users %} <tr id="user-{{ user.user.username }}" {% block row_extra scoped %}{% endblock %}> <td class="rank-td">{{ rank }}</td> {% block after_rank scoped %}{% endblock %} <td class="user-name"><div style="display: inline-block;">{{ link_user(user) }}{% block user_footer scoped %}{% endblock %}</div> {% block user_data scoped %}{% endblock %}</td> {% block before_point scoped %}{% endblock %} {% block point scoped %} <td title="{{ user.performance_points|floatformat(2) }}" class="user-points"> {{ user.performance_points|floatformat(0) }} </td> {% endblock %} {% block after_point scoped %}{% endblock %} </tr> {% endfor %} </tbody>