about summary refs log tree commit diff
path: root/app/views/pages/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/pages/index.html.erb')
-rw-r--r--app/views/pages/index.html.erb16
1 files changed, 0 insertions, 16 deletions
diff --git a/app/views/pages/index.html.erb b/app/views/pages/index.html.erb
index 7bac76b..bccab8f 100644
--- a/app/views/pages/index.html.erb
+++ b/app/views/pages/index.html.erb
@@ -1,19 +1,3 @@
 <h1>nomi pinball</h1>
 <%= image_tag "coinslotlogo.png" %>
 
-<table>
-  <thead>
-    <th>Name</th>
-    <th>Paid</th>
-    <th>Strikes</th>
-  </thead>
-  <tbody>
-    <% @players.order("strikes").each do |player| %>
-      <tr>
-        <td><%= link_to player.name, edit_player_path(player) %></td>
-        <td><%= player.paid %></td>
-        <td><%= player.strikes %></td>
-      </tr>
-    <% end %>
-  </tbody>
-</table>