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

10 lines
468 B
Plaintext

<% # encoding: utf-8 %>
<tr id="<%= dom_id list_book_type %>">
<td><%= list_book_type.title %></td>
<td class="span2">
<a href="<%= admin_book_edit_book_type_path(list_book_type) %>#myModal1" data-toggle="modal" data-remote="true" class="action"><%= t('edit')%></a>
<%= link_to 'Delete', polymorphic_path([:admin, list_book_type]), data: { confirm: t('sure?') }, method: :delete, remote: true, class: "delete_level archive_toggle action" %>
</td>
</tr>