{% if info['data'] %}
- {{ info['data']['map'] }}
- {{ info['data']['players'] }} / {{ info['data']['playersmax'] }}
{% if info['update']['success'] %}
{{ info['update']['message'] }}
{% endif %}
{% if info['data']['players'] %}
Name |
Score |
Time |
{% for player in info['data']['player_info'] | sort(attribute='score', reverse=True) %}
{{ player['name'] }} |
{{ player['score'] }} |
{{ display_age(player['duration']) }} |
{% endfor %}
{% endif %}
{% else %}
This server did not respond in time.
{% endif %}
{% endfor %}