mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
26 lines
645 B
Plaintext
26 lines
645 B
Plaintext
<h1>Pick A Tournament</h1>
|
|
<%= link_to 'New Tournament', new_tournament_path, :class=>"btn" %>
|
|
</br>
|
|
</br>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @tournaments.each do |tournament| %>
|
|
<tr>
|
|
<td><%= tournament.name %></td>
|
|
<td><%= link_to 'Show', tournament, :class=>"btn" %><%= link_to 'Edit', edit_tournament_path(tournament), :class=>"btn" %><%= link_to 'Destroy', tournament, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
|