mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-31 11:35:45 +00:00
30 lines
839 B
Plaintext
30 lines
839 B
Plaintext
<h1>Listing wrestlers</h1>
|
|
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Weight</th>
|
|
<th>Seed</th>
|
|
<th>Original seed</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<% @wrestlers.each do |wrestler| %>
|
|
<tr>
|
|
<td><%= wrestler.name %></td>
|
|
<td><%= Weight.find(wrestler.weight_id).max %></td>
|
|
<td><%= wrestler.seed %></td>
|
|
<td><%= wrestler.original_seed %></td>
|
|
<td><%= link_to 'Show', wrestler , :class=>"btn" %><%= link_to 'Edit', edit_wrestler_path(wrestler), :class=>"btn" %><%= link_to 'Destroy', wrestler, method: :delete, data: { confirm: 'Are you sure?' }, :class=>"btn btn-danger" %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<%= link_to 'New Wrestler', new_wrestler_path %>
|