Sha256: ee11ab52975f8198de90dfd227db12442d90055046555544c5d5ec6c236fc2c7
Contents?: true
Size: 759 Bytes
Versions: 5
Compression:
Stored size: 759 Bytes
Contents
<table class="index"> <thead> <tr data-hook="taxons_header"> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(:path) %></th> <th></th> </tr> </thead> <tbody> <% taxons.each do |taxon| %> <tr id="<%= spree_dom_id(taxon) %>" data-hook="taxons_row" class="<%= cycle('odd', 'even')%>"> <td><%= taxon.name %></td> <td><%= taxon_path taxon %></td> <td class="actions"> <%= link_to_delete taxon, url: remove_admin_product_taxon_url(@product, taxon), name: icon('delete') + ' ' + Spree.t('actions.remove') %> </td> </tr> <% end %> <% if taxons.empty? %> <tr data-hook="taxons_none"><td colspan="3"><%= Spree.t(:none) %>.</td></tr> <% end %> </tbody> </table>
Version data entries
5 entries across 5 versions & 1 rubygems