{% extends "usta/base.html" %} {% load staticfiles usta_tags %} {% block title %}{{ block.super }} | Player {{ player }}{% endblock %} {% block main %}

{{ player }}

{{ player }} Division {{ tournament_data.get_division_display }}
Home Town {{ player.city }}, {{ player.state }}
USTA Section {{ tournament_data.usta_section }}
Singles Line {{ tournament_data.singles_line }}
Singles Seed {{ tournament_data.singles_seed }}
Doubles Line {{ tournament_data.doubles_line }}
Doubles Seed {{ tournament_data.doubles_seed }}
{% for year, event_types in match_set.items %}

{{ year }}

{% for event_type, draw_types in event_types.items %}

{{ draw_types.0.0.get_event_type_display }}

{% for draw_type, matches in draw_types.items %}

{{ matches.0.get_draw_type_display }}

{% for match in matches %} {% endfor %}
Round Players Final Score
{{ match.get_round_number_display }} {% match_display match player event16 %} {% if not match.player1 or not match.player2 %} Automatic Advance {% else %} {{ match.final_score }} {% endif %}
{% endfor %}
{% endfor %}
{% endfor %}
{% endblock %}