{{ QueryValues.name if QueryValues.name}}{{ "Playlist" if not QueryValues.name}}

by {{ response.CreatorName }}

ID: {{ response.ID }}

Maps: {{ response.MapCount }}

{% if response.Maps %}
{% for map in response.Maps %}
{{ map['Name'] }}
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
by {{ map['CreatorName'] }}
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
Replays visible: {{ "always" if map['ReplayVisibility'] == 2 }}{{ "after clear" if map['ReplayVisibility'] == 0 }}
Gems : {{ map['DragonCoins'] }}
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Full server response {% for value in map %} {% endfor %}
KeyValue
{{value}}{{map[value]}}
First Clear: {{ map['FirstClearUsername'] }}
{% set BestTime = convert_times(map['BestTimePlaytime']) %} {% set BestFullTime = convert_times(map['BestFullTimePlaytime']) %}
Best Time: {{ map['BestTimeUsername'] }} [{{ BestTime[0] }}:{{ BestTime[1] }}:{{ BestTime[2] }}]
{% if map['BestFullTimeUserID'] != 0 %}
Best 100% Time: {{ map['BestFullTimeUsername'] }} [{{ BestFullTime[0] }}:{{ BestFullTime[1] }}:{{ BestFullTime[2] }}]{{ "(illegal time)" if not map['DragonCoins'] }}
{% endif %}
{% endfor %}
{% endif %}