<h1> Admin List of Wrestlers</h1>
<hr>
<%= link_to("New Wrestlers", new_admin_wrestler_path) %>
<hr>
<table width="100%">
	<tr>
		<th>First Name</th>
		<th>Last Name</th>
		<th>Ring</th>
		<th>Signature</th>
		<th>Gender</th>
		<th>Actions</th>
	<tr>
	<% @wrestlers.each do |wrestler| %>
		<tr>
			<td><%=wrestler.first_name %></td>
			<td><%=wrestler.last_name %></td> 
			<td><%=wrestler.ring_name %></td> 
			<td><%=wrestler.signature_move %></td>
			<td><%=wrestler.gender %></td> 
			<td>
				<%= link_to "Show", admin_wrestler_path(wrestler.id) %>
				<%= link_to "Edit",
					edit_admin_wrestler_path(wrestler.id) %>
				<%= link_to "Delete", admin_wrestler_path(wrestler.id), method: :delete, data:{ confirm: 'Are you sure?'} %>
			</td>
		</tr>
	<% end %>
</table>

<hr>
<%= link_to("View as User", wrestlers_path) %>
<hr>
<%= link_to("Wrestlers' Home", root_path) %>