{% extends "base" %} {% block contents %}

This is the private leaderboard of {{ leaderboard_name }} for Advent of Code {{ year }}. It was generated by combining multiple private leaderboards, which were last updated at approximately {{ updated_at_str }} (leaderboards are updated every {{ leaderboard_update_sec }} seconds). You can use a different [Ordering].

{%- if as_of_str %}

This page is currently showing the state of the leaderboard as it was on {{ as_of_str }}.

{% endif -%}

Gold indicates the user got both stars for that day, silver means just the first star, and gray means none.

   {% if leaderboard_order == "stars" %}  {% endif %}{{ table_head_pad }} {%- for n in range(start=1, end=10) -%} {%- if n <= last_unlock_day -%} {{ n }} {%- else -%} {{ n }} {%- endif -%} {%- endfor -%} {%- for n in range(end=10) -%} {%- if n + 10 <= last_unlock_day -%} 1
{{ n }}
{%- else -%} 1
{{ n }}
{%- endif -%} {%- endfor -%} {%- for n in range(end=6) -%} {%- if n + 20 <= last_unlock_day -%} 2
{{ n }}
{%- else -%} 2
{{ n }}
{%- endif -%} {%- endfor -%}
{%- for member in members -%}
{{ rank_str[loop.index0] }})  {%- if leaderboard_order == "stars" -%} {{ score_str[loop.index0] }}*   {%- else -%} {{ score_str[loop.index0] }}  {%- endif -%} {%- for stars in member.stars -%} {%- if loop.index <= last_unlock_day -%} * {%- else -%}   {%- endif -%} {%- endfor %} {{ member.name }}
{% endfor %} {% endblock contents %}