{% extends "base.html" %} {% block title %}{{ player_name }} - Pickleball ELO Tracker{% endblock %} {% block content %}

{{ player_name }}

{% include "components/nav.html" %}

Rating

{{ current_rating }}

{% if rating_change >= 0.0 %} +{{ rating_change }} {% else %} {{ rating_change }} {% endif %} in last match

Match Statistics

Total Matches: {{ total_matches }}

Wins: {{ wins }}

Losses: {{ losses }}

Win Rate: {{ win_rate }}%

{% if email %}

Email: {{ email }}

{% endif %}
✏️ Edit Player 🗑️ Delete Player
{% if history_chart_data %}

📈 Rating Trend

{% endif %} {% if head_to_head %}

⚔️ Head-to-Head

{% for opp in head_to_head %} {% endfor %}
Opponent Wins Losses Win Rate
{{ opp.name }} {{ opp.wins }} {{ opp.losses }} {{ opp.win_percentage }}%
{% endif %} {% if achievements %}

🏆 Achievements

{% for achievement in achievements %} {{ achievement }} {% endfor %}
{% endif %} {% endblock %}