1
0
mirror of https://github.com/jcwimer/wrestlingApp synced 2026-04-13 00:26:31 +00:00

Moved team score for faster front page load.

This commit is contained in:
2015-02-06 09:18:04 -05:00
parent 3eff0ed0fa
commit 5b8e90b50a
5 changed files with 35 additions and 2 deletions

View File

@@ -37,7 +37,6 @@
<thead>
<tr>
<th>Name</th>
<th>Score</th>
<th></th>
</tr>
</thead>
@@ -46,7 +45,6 @@
<% @schools.each do |school| %>
<tr>
<td><%= school.name %></td>
<td><%= school.score %></td>
<td><%= link_to 'Show', school, :class=>"btn" %>
<% if user_signed_in? %>
<%= link_to 'Edit', edit_school_path(school), :class=>"btn" %>