summaryrefslogtreecommitdiff
path: root/app/views/tournaments/index.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-03-04 19:04:36 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-03-04 19:04:36 -0500
commit6db29eb669a85e5b0aac7a1e8879781a1cb77772 (patch)
tree26114b3a2385a839220ef3e59dac65b561ca3793 /app/views/tournaments/index.html.erb
parent40e0c9cf507dc27c9553af5ca962e3c65dc42780 (diff)
parente1d73b277cbc55615d10dbb842480f970ae5a538 (diff)
Merge branch 'master' of github.com:LukeShu/leager
Diffstat (limited to 'app/views/tournaments/index.html.erb')
-rw-r--r--app/views/tournaments/index.html.erb27
1 files changed, 27 insertions, 0 deletions
diff --git a/app/views/tournaments/index.html.erb b/app/views/tournaments/index.html.erb
new file mode 100644
index 0000000..26d0643
--- /dev/null
+++ b/app/views/tournaments/index.html.erb
@@ -0,0 +1,27 @@
+<h1>Listing tournaments</h1>
+
+<table>
+ <thead>
+ <tr>
+ <th>Tournament ID</th>
+ <th>Show Tournament</th>
+ <th>Edit Tournament</th>
+ <th>Delete Tournament</th>
+ </tr>
+ </thead>
+
+ <tbody>
+ <% @tournaments.each do |tournament| %>
+ <tr>
+ <td><%= tournament.id %></td>
+ <td><%= link_to 'Show', tournament %></td>
+ <td><%= link_to 'Edit', edit_tournament_path(tournament) %></td>
+ <td><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' } %></td>
+ </tr>
+ <% end %>
+ </tbody>
+</table>
+
+<br>
+
+<%= link_to 'New Tournament', new_tournament_path, :class => "btn btn-warning btn-lg" %>