{% load static %}
| ID | Player 1 | Player 2 | Score Player 1 | Score Player 2 | Winner | Ball Touches Player 1 | Ball Touches Player 2 | Duration | Date | Is Tournament | Tournament |
|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ match.id }} | {{ match.player1.name }} | {{ match.player2.name }} | {{ match.score_player1 }} | {{ match.score_player2 }} | {{ match.winner.name }} | {{ match.nbr_ball_touch_p1 }} | {{ match.nbr_ball_touch_p2 }} | {{ match.duration }} | {{ match.date }} | {{ match.is_tournoi }} | {{ match.tournoi.name }} |
| No matches found. | |||||||||||
| ID | Name | Total Matches | Total Wins | Win Percentage | Average Match Score | Average Opponent Score | Best Score | Average Ball Touches | Total Duration | Average Duration | Participated Tournaments | Won Tournaments |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| {{ player.id }} | {{ player.name }} | {{ player.total_match }} | {{ player.total_win }} | {{ player.p_win }} | {{ player.m_score_match }} | {{ player.m_score_adv_match }} | {{ player.best_score }} | {{ player.m_nbr_ball_touch }} | {{ player.total_duration }} | {{ player.m_duration }} | {{ player.num_participated_tournaments }} | {{ player.num_won_tournaments }} |
| No players found. | ||||||||||||