Sha256: 6fc774991ae257bc6f109c759b43a9802272651229480f4220766cb41d63dd9b

Contents?: true

Size: 1.8 KB

Versions: 33

Compression:

Stored size: 1.8 KB

Contents

<% content_for :page_title do %>
  <%= plural_resource_name(Spree::StockLocation) %>
<% end %>

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:new_stock_location), new_object_url, { :class => "btn-success", :icon => 'add', :id => 'admin_new_stock_location' } %>
<% end if can? :create, Spree::StockLocation %>

<% if @stock_locations.any? %>
  <table class="table" id='listing_stock_locations' data-hook>
    <thead>
      <tr data-hook="stock_locations_header">
        <th><%= Spree.t(:name) %></th>
        <th><%= Spree.t(:state) %></th>
        <th><%= Spree.t(:stock_movements) %></th>
        <th class="actions"></th>
      </tr>
    </thead>
    <tbody>
      <% @stock_locations.each do |stock_location|
           @edit_url = edit_admin_stock_location_path(stock_location)
           @delete_url = admin_stock_location_path(stock_location)
      %>
        <tr id="<%= spree_dom_id stock_location %>" data-hook="stock_location_row">
          <td><%= display_name(stock_location) %></td>
          <td><span class="state <%= state(stock_location) %>"><%= Spree.t(state(stock_location)) %></span></td>
          <td><%= link_to Spree.t(:stock_movements), admin_stock_location_stock_movements_path(stock_location.id) %> </td>
          <td class="actions actions-2 text-center">
            <%= link_to_edit(stock_location, :no_text => true) if can? :create, stock_location %>
            <%= link_to_delete(stock_location, :no_text => true) if can? :create, stock_location %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::StockLocation)) %>,
    <%= link_to(Spree.t(:add_one), new_object_url) if can? :create, Spree::StockLocation %>!
  </div>
<% end %>

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
spree_backend-3.1.14 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.13 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.12 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.11 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.10 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.9 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.8 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.7 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.6 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.5 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.4 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.3 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.2 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.0.10 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.1 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.0 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.0.rc4 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.0.9 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.0.rc3 app/views/spree/admin/stock_locations/index.html.erb
spree_backend-3.1.0.rc2 app/views/spree/admin/stock_locations/index.html.erb