|
<h1>Listing mission_agents</h1>
<table>
<thead>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @mission_agents.each do |mission_agent| %>
<tr>
<td><%= link_to 'Show', mission_agent %></td>
<td><%= link_to 'Edit', edit_mission_agent_path(mission_agent) %></td>
<td><%= link_to 'Destroy', mission_agent, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Mission agent', new_mission_agent_path %>
|