High Scores
{% with total_scores=scores|length %}
{% if total_scores > 0 %}
{% for score in scores %}
- {{ score.rank }}) {{ score.user.username }} - {{ score.score }} points
{% endfor %}
{% else %}
No score is submitted yet. Use API to create some
{% endif %}
{% endwith %}