Reformat html files
This commit is contained in:
parent
9a208ca108
commit
52f1e77fe1
205 changed files with 11096 additions and 11086 deletions
|
@ -1,32 +1,32 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<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 %}
|
||||
{% 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>
|
||||
</tr>
|
||||
</thead>
|
||||
|
||||
<tbody>
|
||||
{% for rank, user in users %}
|
||||
{% 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 %}
|
||||
<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 %}
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue