Sha256: d0115eb47d89dd4ed165f5b12d96537fbadb447defa0e90276b1957f49bb331e

Contents?: true

Size: 1.61 KB

Versions: 15

Compression:

Stored size: 1.61 KB

Contents

<% content_for :page_title do %>
  <%= Spree.t(:"admin.user.stores") %>
<% end %>

<% content_for :page_actions do %>
  <%= button_link_to Spree.t(:add_store), spree.new_admin_store_path(@user), class: "btn-success", icon: 'add' if can?(:create, Spree::Store) %>
<% end %>

<% if @stores.any? %>
  <table class="table">
    <thead>
      <th><%= Spree.t(:name) %></th>
      <th><%= Spree.t(:url) %></th>
      <th><%= Spree.t(:currency) %></th>
      <th data-hook="admin_stores_index_header_actions" class="actions"></th>
    <thead>
    <tbody>
      <% @stores.each do |store| %>
        <tr>
          <td><%= store.name %></td>
          <td><%= store.url %></td>
          <td><%= store.default_currency %></td>
          <td class="actions actions-2 text-center" data-hook="admin_stores_index_row_actions">
            <% if store.default %>
              <%= button_link_to(Spree.t(:store_default), '#', class: 'btn-success btn-sm') %>
            <% else %>
              <%= button_link_to(Spree.t(:store_set_default_button), spree.set_default_admin_store_path(store), method: :post, class: 'btn-outline-secondary btn-sm') if can?(:edit, store) %>
            <% end %>
            <%= link_to_edit_url spree.edit_admin_store_path(store), no_text: true if can?(:edit, store) %>
            <%= link_to_delete store, no_text: true, url: spree.admin_store_path(store) if can?(:destroy, store) %>
          </td>
        </tr>
      <% end %>
    </tbody>
  </table>
<% else %>
  <div class="alert alert-info no-objects-found">
    <%= Spree.t(:no_resource_found, resource: plural_resource_name(Spree::StoreCredit)) %>
  </div>
<% end %>

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
spree_backend-4.0.9 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.8 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.7.1 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.7 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.6 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.5 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.4 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.3 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.2 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.1 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.0 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.0.rc3 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.0.rc2 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.0.rc1 app/views/spree/admin/stores/index.html.erb
spree_backend-4.0.0.beta app/views/spree/admin/stores/index.html.erb