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

📜 Match History

{% include "components/nav.html" %}
🎾 Record New Match
{% if matches.is_empty() %}
No matches recorded yet. Record one!
{% else %} {% for match in matches %} {% endfor %}
Type Team 1 Score Team 2 Date Actions
{{ match.match_type }} {{ match.team1_display }} {{ match.team1_score }}-{{ match.team2_score }} {{ match.team2_display }} {{ match.timestamp | truncate(length=16) }} Delete
{% endif %} {% endblock %}