Sha256: ee8a5fdb3def79ffab306393efde90a710d1de75b63ede2b93a4f6e4abf4b836

Contents?: true

Size: 1.05 KB

Versions: 8

Compression:

Stored size: 1.05 KB

Contents

<div class="table-responsive border rounded bg-white">
  <table class="table sortable" id='listing_taxonomies' data-hook data-sortable-link="<%= update_positions_admin_taxonomies_url %>">
    <thead class="text-muted">
      <tr data-hook="taxonomies_header">
        <th class="no-border handel-head"></th>
        <th><%= Spree.t(:name) %></th>
        <th class="actions"></th>
      </tr>
    </thead>
    <tbody id="sortVert">
      <% @taxonomies.each do |taxonomy| %>
        <tr id="<%= spree_dom_id taxonomy %>" data-hook="taxonomies_row">
          <td class="move-handle">
            <%= svg_icon name: "grip-vertical.svg", width: '18', height: '18' %>
          </td>
          <td><%= taxonomy.name %></td>
          <td class="actions">
            <span class="d-flex justify-content-end">
              <%= link_to_edit taxonomy.id, no_text: true if can?(:edit, taxonomy) %>
              <%= link_to_delete taxonomy, no_text: true if can?(:delete, taxonomy) %>
            </span>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
</div>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
spree_backend-4.7.2 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.6.2 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.7.1 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.7.0 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.6.1 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.6.0 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.5.1 app/views/spree/admin/taxonomies/_list.html.erb
spree_backend-4.5.0 app/views/spree/admin/taxonomies/_list.html.erb