{% extends "layout.html" %} {% block title %}Admin{% endblock %} {% block currentPage %}admin{% endblock %} {% block script %}{{config.url("/src/admin.js", "cdn")}}{% endblock %} {% block content %}

Matches

{% if not matches %} No matches. {% else %}
{% for match in matches %}
Match.{{match.id}}
{% for team in match.teams %} {{team["name"]}} {% for user in toList(team["users"]) %} {{user.name}} {% endfor %} {% endfor %}
{% if match.claimed != None %} {% endif %} {% if match.claimed == None %} Not started • {% endif %} {{fromTimestamp(match.time).strftime("%d/%m/%Y @ %H:%M:%S")}}
{% endfor %}
{% endif %}
{% endblock %}