Sha256: c7b717bc08e6d56d67b3091f1894f71a0ab593ace096dbdd1da5f5d383bcd82d
Contents?: true
Size: 1.13 KB
Versions: 11
Compression:
Stored size: 1.13 KB
Contents
<table class="index sortable" id='listing_taxonomies' data-hook data-sortable-link="<%= update_positions_admin_taxonomies_url %>"> <colgroup> <col style="width: 10%"> <col style="width: 75%"> <col style="width: 15%"> </colgroup> <thead> <tr data-hook="taxonomies_header"> <th class="no-border"></th> <th><%= Spree::Taxonomy.human_attribute_name(:name) %></th> <th class="actions"></th> </tr> </thead> <tbody> <% @taxonomies.each do |taxonomy| %> <tr id="<%= spree_dom_id taxonomy %>" data-hook="taxonomies_row" class="<%= cycle('odd', 'even')%>"> <td class="no-border"> <% if can?(:update_positions, Spree::Taxonomy) %> <span class="handle"></span> <% end %> </td> <td class="align-center"><%= taxonomy.name %></td> <td class="actions"> <% if can?(:update, taxonomy) %> <%= link_to_edit taxonomy, no_text: true %> <% end %> <% if can?(:destroy, taxonomy) %> <%= link_to_delete taxonomy, no_text: true %> <% end %> </td> </tr> <% end %> </tbody> </table>
Version data entries
11 entries across 11 versions & 1 rubygems