personal_other_paper/app/views/admin/other_papers/_other_paper_status.html.erb

19 lines
710 B
Plaintext

<thead>
<tr>
<th><%= t("personal_other_paper.other_paper_status.status") %></th>
<th><%= t(:action) %></th>
</tr>
</thead>
<tbody>
<% @other_paper_statuses.each do |other_paper_status| %>
<tr id="<%= dom_id other_paper_status %>">
<td><%= other_paper_status.status %></td>
<td class="span2">
<a href="<%= edit_admin_other_paper_status_path(other_paper_status) %>#other_paper_status_modal" data-toggle="modal" data-remote="true" class="action">
<%= t(:edit) %>
</a>
<%= link_to t(:delete_), admin_other_paper_status_path(other_paper_status), "data-confirm" => t('sure?'), :method => :delete, :remote => true,:class=>"archive_toggle action" %>
</td>
</tr>
<% end %>
</tbody>