41 lines
1.3 KiB
Plaintext
41 lines
1.3 KiB
Plaintext
<h1>Match Administration</h1>
|
|
|
|
<p><a href="/admin/matches/new">Enter New Match</a> | <a href="/admin/matches/upload">Upload CSV</a></p>
|
|
|
|
<% if matches.any? %>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>ID</th>
|
|
<th>Date</th>
|
|
<th>Team 1</th>
|
|
<th>Score</th>
|
|
<th>Team 2</th>
|
|
<th>Score</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% matches.each do |match| %>
|
|
<tr>
|
|
<td data-label="ID"><%= match.id %></td>
|
|
<td data-label="Date"><%= match.played_at&.strftime('%Y-%m-%d %H:%M') %></td>
|
|
<td data-label="Team 1"><%= match.team_1_p1_name %> + <%= match.team_1_p2_name %></td>
|
|
<td data-label="Score 1"><strong><%= match.team_1_score %></strong></td>
|
|
<td data-label="Team 2"><%= match.team_2_p1_name %> + <%= match.team_2_p2_name %></td>
|
|
<td data-label="Score 2"><strong><%= match.team_2_score %></strong></td>
|
|
<td data-label="Status"><%= match.status %></td>
|
|
<td data-label="Actions">
|
|
<a href="/admin/matches/<%= match.id %>/edit">Edit</a>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<p>No matches entered yet.</p>
|
|
<% end %>
|
|
|
|
<p><a href="/admin/players">Manage Players</a></p>
|