mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
30 lines
587 B
Plaintext
30 lines
587 B
Plaintext
<h1>Listing mats</h1>
|
|
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Tournament</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @mats.each do |mat| %>
|
|
<tr>
|
|
<td><%= mat.name %></td>
|
|
<td><%= mat.tournament_id %></td>
|
|
<td><%= link_to 'Show', mat %></td>
|
|
<td><%= link_to 'Edit', edit_mat_path(mat) %></td>
|
|
<td><%= link_to 'Destroy', mat, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Mat', new_mat_path %>
|