mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
17 lines
297 B
Plaintext
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> |