1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-03-25 01:14:43 +00:00
Files
wrestlingdev.com/app/views/static_pages/school.html.erb
2013-12-31 11:23:43 -05:00

17 lines
297 B
Plaintext

<h1>School Scores</h1>
<table class="table table-striped table-bordered">
<thead>
<tr>
<td>Name</td>
<td>Score</td>
</tr>
</thead>
<tbody>
<% @school.each do |school| %>
<tr>
<td><%= school.name %></td>
<td><%= school.score %></td>
</tr>
<% end %>
</tbody>
</table>