summaryrefslogtreecommitdiff
path: root/app/views/teams/index.html.erb
diff options
context:
space:
mode:
authorDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
committerDavisLWebb <davislwebb@ymail.com>2014-03-02 15:06:54 -0500
commitb677983475513c78108406901fccd5cbe9604ca6 (patch)
treef83b5e20930cbe1be890af41ea1d0c0d2ebf5e2e /app/views/teams/index.html.erb
parent4e682a9a8596326a2d1faab6c44e5a54918c5ba0 (diff)
parent1bfc0513fa113f5b4a61e89d74e42dd78ece44e7 (diff)
Merge branch 'master' of http://github.com/LukeShu/leaguer
Conflicts: Gemfile.lock app/views/layouts/application.html.erb config/routes.rb
Diffstat (limited to 'app/views/teams/index.html.erb')
-rw-r--r--app/views/teams/index.html.erb25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/views/teams/index.html.erb b/app/views/teams/index.html.erb
deleted file mode 100644
index b077e10..0000000
--- a/app/views/teams/index.html.erb
+++ /dev/null
@@ -1,25 +0,0 @@
-<h1>Listing teams</h1>
-
-<table>
- <thead>
- <tr>
- <th></th>
- <th></th>
- <th></th>
- </tr>
- </thead>
-
- <tbody>
- <% @teams.each do |team| %>
- <tr>
- <td><%= link_to 'Show', team %></td>
- <td><%= link_to 'Edit', edit_team_path(team) %></td>
- <td><%= link_to 'Destroy', team, method: :delete, data: { confirm: 'Are you sure?' } %></td>
- </tr>
- <% end %>
- </tbody>
-</table>
-
-<br>
-
-<%= link_to 'New Team', new_team_path %>