{{#courts_with_matches}}<table class="court"><tbody>
<tr>
<td class="court_num" rowspan="2">{{num}}</td>
{{^match}}
<td class="court_empty" colspan="{{gamesplus2}}" rowspan="2"></td>
{{/match}}

{{#match}}
<td class="court_players team0">{{p0str}}</td>
{{#team0scores}}
<td class="court_score team0">{{.}}</td>
{{/team0scores}}
{{#show_event}}
<td class="court_event" rowspan="2"><div><span>{{n}}</span></div></td>
{{/show_event}}
{{/match}}
</tr>

<tr>
{{#match}}
<td class="court_players team1">{{p1str}}</td>
{{#team1scores}}
<td class="court_score team1">{{.}}</td>
{{/team1scores}}
{{/match}}
</tr></tbody></table>
{{/courts_with_matches}}