mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
22 lines
446 B
Plaintext
22 lines
446 B
Plaintext
<%= link_to "Back to #{@tournament.name}", "/tournaments/#{@tournament.id}" , :class=>"btn btn-default"%>
|
|
<br>
|
|
<br>
|
|
|
|
<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.score %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table> |