Sha256: dd5d64ff2b3a5951e42899716d7d2744cce336e4aeb338daffa7c313cdbf10d3

Contents?: true

Size: 693 Bytes

Versions: 2

Compression:

Stored size: 693 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="<%= 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") + ' ' + 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

2 entries across 2 versions & 1 rubygems

Version Path
spree_core-0.70.0.rc2 app/views/admin/taxons/_taxon_table.html.erb
spree_core-0.70.RC1 app/views/admin/taxons/_taxon_table.html.erb