Sha256: 12235d5263328c37ca47bacaf3a534ff797d6cca05f6c854f4408852a8d56935

Contents?: true

Size: 697 Bytes

Versions: 7

Compression:

Stored size: 697 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">
        <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

7 entries across 7 versions & 1 rubygems

Version Path
spree_core-1.2.5 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.4 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.3 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.2 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.0 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.0.rc2 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_core-1.2.0.rc1 app/views/spree/admin/taxons/_taxon_table.html.erb