Sha256: 652b60962406d2c9d5a0ca4368d2869656fa2985f9d509d9bd1ecbaa86533d3a
Contents?: true
Size: 1 KB
Versions: 11
Compression:
Stored size: 1 KB
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"> <span class="d-flex justify-content-end"> <%= link_to_edit taxonomy.id, no_text: true if can?(:edit, taxonomy) %> <%= link_to_delete taxonomy, no_text: true if can?(:delete, taxonomy) %> </span> </td> </tr> <% end %> </tbody> </table> </div>
Version data entries
11 entries across 11 versions & 1 rubygems