Sha256: 3c2f4edd6325c69070d08948e93f5dfc043eab5fb9114906d95498ebdebcf67e
Contents?: true
Size: 967 Bytes
Versions: 10
Compression:
Stored size: 967 Bytes
Contents
<div class="table-responsive"> <table class="table sortable" id='listing_taxonomies' data-hook data-sortable-link="<%= update_positions_admin_taxonomies_url %>"> <thead> <tr data-hook="taxonomies_header"> <th class="no-border handel-head"></th> <th><%= Spree.t(:name) %></th> <th class="actions"></th> </tr> </thead> <tbody id="sortVert"> <% @taxonomies.each do |taxonomy| %> <tr id="<%= spree_dom_id taxonomy %>" data-hook="taxonomies_row"> <td class="move-handle"> <%= svg_icon name: "sort.svg", width: '18', height: '18' %> </td> <td><%= taxonomy.name %></td> <td class="actions actions-2 text-right"> <%= link_to_edit taxonomy.id, no_text: true if can?(:edit, taxonomy) %> <%= link_to_delete taxonomy, no_text: true if can?(:delete, taxonomy) %> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
10 entries across 10 versions & 1 rubygems