You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/templates/partials/homepage/ranking.html

38 lines
1.3 KiB
HTML

{% if payload.length %}
<div class="section">
<div class="section__header">
<h1 class="section__title">{{ _('Ranking') }}</h1>
</div>
<div class="section__body no-padding">
<div>
<table class="data-table">
<colgroup>
<col class="col--rank">
<col class="col--user">
<col class="col--rp">
<col class="col--bio">
</colgroup>
<thead>
<tr>
<th class="col--rank">{{ _('Rank') }}</th>
<th class="col--user">{{ _('Username') }}</th>
<th class="col--rp">{{ _('RP') }}</th>
<th class="col--bio">{{ _('Bio') }}</th>
</tr>
</thead>
<tbody>
{%- for uid in payload -%}
{% set udoc = udict[uid] %}
<tr>
<td class="col--rank">{{ loop.index }}</td>
<td class="col--user">{{ user.render_inline(udoc, levelbadge=false) }}</td>
<td class="col--rp">{{ udoc.rp|default(1500)|round(0) }}</td>
<td class="col--bio">{{ udoc.bio|default('')|truncate(64, true)|markdownInline|safe }}</td>
</tr>
{%- endfor -%}
</tbody>
</table>
</div>
</div>
</div>
{% endif %}