Sha256: d932dd94a42f595c59c75e9e98c2f791c90dab695a1b5d951a93a235c18ec4e9
Contents?: true
Size: 1.11 KB
Versions: 27
Compression:
Stored size: 1.11 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.t(: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
27 entries across 27 versions & 1 rubygems