{% extends "base.html" %} {% block content %}

{{ match.map_name }}

Match ID: {{ match.match_id }} | {{ match.start_time }}

{{ match.score_team1 }} : {{ match.score_team2 }}
Download Raw JSON

Team 1

{% for p in team1_players %} {% endfor %}
Player K D A +/- ADR KAST Rating
{{ p.kills }} {{ p.deaths }} {{ p.assists }} {{ p.kills - p.deaths }} {{ "%.1f"|format(p.adr or 0) }} {{ "%.1f"|format(p.kast or 0) }}% {{ "%.2f"|format(p.rating or 0) }}

Team 2

{% for p in team2_players %} {% endfor %}
Player K D A +/- ADR KAST Rating
{{ p.kills }} {{ p.deaths }} {{ p.assists }} {{ p.kills - p.deaths }} {{ "%.1f"|format(p.adr or 0) }} {{ "%.1f"|format(p.kast or 0) }}% {{ "%.2f"|format(p.rating or 0) }}
{% endblock %}