personal-book/app/views/admin/books/_list_book_type.html.erb

8 lines
432 B
Plaintext

<tr id="<%= dom_id list_book_type %>">
<td><%= list_book_type.title %></td>
<td class="span2">
<a href="<%= edit_admin_book_type_path(list_book_type) %>#book_type_modal" data-toggle="modal" data-remote="true" class="action"><%= t(:edit) %></a>
<%= link_to t(:delete_), admin_book_type_path(list_book_type), "data-confirm" => t('sure?'), :method => :delete, :remote => true,:class=>"archive_toggle action" %>
</td>
</tr>