1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/app/views/tournaments/team_scores.html.erb

21 lines
452 B
Plaintext

<% cache ["#{@tournament.id}_team_scores", @tournament] do %>
<h3>Team Scores</h3>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>Name</th>
<th>Score</th>
</tr>
</thead>
<tbody>
<% @schools.each do |school| %>
<tr>
<td><%= school.name %></td>
<td><%= school.page_score_string %></td>
</tr>
<% end %>
</tbody>
</table>
<% end %>