Sha256: e63b2ad59c1a5fc5874d35f3444f4bb05e25a13c03ed34a2d7f17afe4bea126f
Contents?: true
Size: 765 Bytes
Versions: 21
Compression:
Stored size: 765 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
21 entries across 21 versions & 1 rubygems