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

🎯 Match History

{% include "components/nav.html" %} {% if matches.is_empty() %}
No matches recorded yet. Record the first match!
{% else %}
{% for match in matches %} {% endfor %}
Type Team 1 Score Team 2 Date
{{ match.match_type }} {% for player in match.team1_players %}
{{ player.name }} {% if player.rating_change >= 0.0 %}+{% endif %}{{ player.rating_change_display }}
{% endfor %}
{{ match.team1_score }}-{{ match.team2_score }} {% for player in match.team2_players %}
{{ player.name }} {% if player.rating_change >= 0.0 %}+{% endif %}{{ player.rating_change_display }}
{% endfor %}
{{ match.match_date }}
{% endif %} {% endblock %}