Sha256: c6d9f5b8f6606bc7d75e62cccf11b950a598bd8ee4e7a2b9bf0c61346331af20
Contents?: true
Size: 1.71 KB
Versions: 20
Compression:
Stored size: 1.71 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><%= 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('ok', 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> <% 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
20 entries across 20 versions & 1 rubygems