Sha256: 5ff1fa2f13bc58b4eb6ac6d556378efaffb0166d611ff9292c5098ba8e9cdcfd
Contents?: true
Size: 1.88 KB
Versions: 5
Compression:
Stored size: 1.88 KB
Contents
<%= render :partial => 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:stock_movements_for_stock_location, stock_location_name: @stock_location.name) %> <% end %> <% content_for :page_actions do %> <li> <%= button_link_to Spree.t(:new_stock_movement), new_admin_stock_location_stock_movement_path(@stock_location), icon: 'icon-plus', id: 'admin_new_stock_movement_link' %> </li> <% end %> <table class="index" 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> <th data-hook="admin_stock_movements_index_header_actions" class="actions"></th> </tr> </thead> <tbody> <% @stock_movements.each do |stock_movement|%> <tr id="<%= spree_dom_id stock_movement %>" data-hook="admin_stock_movements_index_rows" class="<%= cycle('odd', 'even')%>"> <td class="align-center"><%= stock_movement.stock_item.variant_name %></td> <td class="align-center"><%= stock_movement.quantity %></td> <td class="align-center"><%= pretty_originator(stock_movement) %></td> <td data-hook="admin_stock_movements_index_row_actions" class="actions"> <%= link_to_with_icon 'icon-edit', Spree.t(:edit), edit_admin_stock_location_stock_movement_path(@stock_location, stock_movement), data: { action: 'edit' }, no_text: true %> <%= link_to_with_icon 'icon-trash', Spree.t(:delete), admin_stock_location_stock_movement_path(@stock_location, stock_movement), method: :delete, data: { confirm: t(:are_you_sure), action: 'remove' }, no_text: true %> </td> </tr> <% end %> </tbody> </table> <%= paginate @stock_movements %>
Version data entries
5 entries across 5 versions & 1 rubygems