{% extends "layout.html" %} {% block title %}Spectate{% endblock %} {% block titleEmbed %}Spectate{% endblock %} {% block author %}Team PeekSeek{% endblock %} {% block description %}See matches you can spectate.{% endblock %} {% block color %}#ff0000{% endblock %} {% block currentPage %}spectate{% 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 %}