mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-04-14 00:49:54 +00:00
27 lines
718 B
Plaintext
27 lines
718 B
Plaintext
<% if Rails.env.production? %>
|
|
<script type='text/javascript' src='//eclkmpbn.com/adServe/banners?tid=85597_138467_5&type=shadowbox&size=800x440'></script>
|
|
<% end %>
|
|
<% cache ["team_scores", @tournament] do %>
|
|
<%= 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.pageScore %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% end %> |