Sha256: eb5c487e8a665815c159b1d51bba0b15bb445e57a903a9b8b9647a2f01083898
Contents?: true
Size: 732 Bytes
Versions: 9
Compression:
Stored size: 732 Bytes
Contents
<table class="index"> <thead> <tr data-hook="taxons_header"> <th><%= t(:name) %></th> <th><%= 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') + ' ' + t(:remove) %> </td> </tr> <% end %> <% if taxons.empty? %> <tr data-hook="taxons_none"><td colspan="3"><%= t(:none) %>.</td></tr> <% end %> </tbody> </table>
Version data entries
9 entries across 9 versions & 2 rubygems