{% extends "base.html" %} {% block title %}{{ player.name }} - Pickleball ELO Tracker{% endblock %} {% block content %}
{% include "components/nav.html" %}

{{ player.name }}

{% if player.has_email %}

📧 {{ player.email }}

{% endif %}
✏️ Edit
ELO Rating
{{ player.rating_display }}
Matches Played
{{ match_count }}
Win Rate
{{ win_rate_display }}
{% if chart_data.is_empty() %}
No rating history yet. Record a match to see the chart!
{% else %}

📈 Rating History

{% endif %}

📋 Recent Matches

{% if recent_matches.is_empty() %}

No matches yet.

{% else %}
{% for match in recent_matches %} {% endfor %}
Type Score Rating Change Date
{{ match.match_type }} {{ match.score }} {{ match.rating_change_display }} {{ match.date }}
{% endif %}
{% endblock %}