Sha256: 038177f7451bc08130a0ee545d702d30423cc57175d4d3f7853709589b28de51
Contents?: true
Size: 1.52 KB
Versions: 81
Compression:
Stored size: 1.52 KB
Contents
<% content_for :page_title do %> <%= link_to Spree.t(:stock_locations), spree.admin_stock_locations_path %> / <%= Spree.t(:stock_movements_for_stock_location, stock_location_name: @stock_location.name) %> <% end %> <% content_for :page_actions do %> <%= button_link_to Spree.t(:new_stock_movement), new_admin_stock_location_stock_movement_path(@stock_location), icon: 'add', class: 'btn-success', id: 'admin_new_stock_movement_link' %> <% end %> <% if @stock_movements.any? %> <table class="table" id='listing_stock_movements'> <colgroup> <col style="width: 35%"> <col style="width: 20%"> <col style="width: 45%"> </colgroup> <thead> <tr data-hook="admin_stock_movements_index_headers"> <th><%= Spree.t(:stock_item) %> <th><%= Spree.t(:quantity) %></th> <th><%= Spree.t(:action) %></th> </tr> </thead> <tbody> <% @stock_movements.each do |stock_movement|%> <tr id="<%= spree_dom_id stock_movement %>" data-hook="admin_stock_movements_index_rows"> <td> <%= display_variant(stock_movement) %> </td> <td><%= stock_movement.quantity %></td> <td><%= pretty_originator(stock_movement) %></td> </tr> <% end %> </tbody> </table> <% else %> <div class="alert alert-info no-objects-found"> <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::StockMovement)) %>, <%= link_to Spree.t(:add_one), spree.new_admin_stock_location_stock_movement_path(@stock_location) %>! </div> <% end %> <%= paginate @stock_movements %>
Version data entries
81 entries across 81 versions & 1 rubygems