{% if searchResults %}
{% for map in searchResults %}
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
by {{ map['CreatorName'] }}
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Code:
First Clear: {{ map['FirstClearUsername'] }}
{% set BestTime = convert_times(map['BestTimePlaytime']) %}
Best Time: {{ map['BestTimeUsername'] }} [{{ BestTime[0] }}:{{ BestTime[1] }}:{{ BestTime[2] }}]
{% endfor %}