{% if contest.hasBonusPool %}

The Bonus Point pool currently stands at {{ contest.bonusPoolTotal|number_format }} points.

{% endif %} {% if not contest.isOpen and contest.totalEntries == 0 %}

That's not supposed to happen. Looks like the contest hasn't begun yet!

{% elseif contest.totalEntries == 0 %}

The scheduler has not run yet, there are no results to display.

{% else %}

A grand total of {{ contest.totalEntries|number_format }} {{ action_header }}.

{{ paginator.linkbox|raw }} {% set rank = (paginator.page - 1) * paginator.limit %} {% for entry in contest.leaderboard(paginator.limit, paginator.offset) %} {% set rank = rank + 1 %} {% endfor %}
Rank Who Most recent {{ action }} Most recent time {{ score_header }}
{{ rank|number_format }} {{ entry.username}}{% if entry.user_id == viewer %} (that's you!){% endif %} {{ entry.last_entry_link|raw }} {{ entry.last_upload|time_diff }} {{ entry.entry_count }}
{{ paginator.linkbox|raw }} {% endif %}