Sha256: ebef4c7bea60282e3363da95a289035c72ca676d2ae561f59c6bf444e7538ee1
Contents?: true
Size: 1.76 KB
Versions: 2
Compression:
Stored size: 1.76 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.svg' if can?(:create, Spree::Store) %> <% end %> <% if @stores.any? %> <div class="table-responsive"> <table class="table"> <thead> <th><%= Spree.t(:name) %></th> <th><%= Spree.t(:url) %></th> <th><%= Spree.t(:currency) %></th> <th><%= Spree.t(:default) %>?</th> <th data-hook="admin_stores_index_header_actions" class="actions"></th> <thead> <tbody> <% @stores.each do |store| %> <tr> <td><%= store.name %></td> <td><%= link_to store.url, 'https://' + store.url, target: :blank %></td> <td><%= store.default_currency %></td> <td><%= store.default ? "<strong>#{Spree.t(:say_yes)}</strong>".html_safe : Spree.t(:say_no) %> <td class="actions actions-2 text-right" data-hook="admin_stores_index_row_actions"> <% if can?(:edit, store) && !store.default %> <%= link_to_with_icon('save.svg', Spree.t(:store_set_default_button), spree.set_default_admin_store_path(store), no_text: true, method: :put, class: 'btn btn-warning btn-sm with-tip') %> <% 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> </div> <% 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_backend-4.2.0.rc1 | app/views/spree/admin/stores/index.html.erb |
spree_backend-4.2.0.beta | app/views/spree/admin/stores/index.html.erb |