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

Version Path
spree_backend-4.8.4 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.8.3 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.8.2 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.8.1 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.7.2 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.6.2 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.7.1 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.7.0 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.6.1 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.6.0 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.5.1 app/views/spree/admin/taxons/_taxon_table.html.erb
spree_backend-4.5.0 app/views/spree/admin/taxons/_taxon_table.html.erb