Sha256: c7f0301f834bd611e07d4dca1c67ac52b8b616457f80af314a47a8e69b93cbf0
Contents?: true
Size: 878 Bytes
Versions: 12
Compression:
Stored size: 878 Bytes
Contents
<div class="table-responsive border rounded bg-white"> <table class="table table-condensed border rounded"> <thead class="text-muted"> <tr data-hook="taxons_header"> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(:path) %></th> <th></th> </tr> </thead> <tbody> <% taxons.each do |taxonp| %> <tr id="<%= spree_dom_id(taxon) %>" data-hook="taxons_row"> <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.svg') + ' ' + Spree.t(:remove) %> </td> </tr> <% end %> <% if taxons.empty? %> <tr data-hook="taxons_none"><td colspan="3"><%= Spree.t(:none) %>.</td></tr> <% end %> </tbody> </table> </div>
Version data entries
12 entries across 12 versions & 1 rubygems