socialforge/app/views/apply_project_masters/index.html.erb

22 lines
541 B
Plaintext

<h1>Listing apply_project_masters</h1>
<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>
<% @apply_project_masters.each do |apply_project_master| %>
<tr>
<td><%= link_to 'Show', apply_project_master %></td>
<td><%= link_to 'Edit', edit_apply_project_master_path(apply_project_master) %></td>
<td><%= link_to 'Destroy', apply_project_master, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</table>
<br />
<%= link_to 'New Apply project master', new_apply_project_master_path %>