Sha256: de1f273fa8ddf0e0771ed5445d3b733571c7e7a2b23e43781ae4276a6ac1925a
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
<%= render :partial => 'spree/admin/shared/configuration_menu' %> <% content_for :page_title do %> <%= Spree.t(:stores) %> <% end %> <% content_for :page_actions do %> <li> <%= button_link_to Spree.t(:new_store), new_object_url, :icon => 'icon-plus', :id => 'admin_new_store_link' %> </li> <% end %> <table class="index" id='listing_stores'> <colgroup> <col style="width: 120px"> <col style="width: 80px"> <col style="width: 80px"> <col style="width: 220px"> <col style="width: 15%"> </colgroup> <thead> <th><%= Spree.t(:store_name) %></th> <th><%= Spree.t(:store_code) %></th> <th><%= Spree.t(:send_mails_as) %></th> <th><%= Spree.t(:domains) %></th> <th data-hook="admin_stores_index_header_actions" class="actions"></th> </thead> <tbody> <% @stores.each do |store|%> <tr id="<%= spree_dom_id store %>" data-hook="admin_stores_index_rows" class="<%= cycle('odd', 'even') %>"> <td><%= store.name %></td> <td><%= store.code %></td> <td><%= store.mail_from_address %></td> <td><%= store.url %></td> <td data-hook="admin_stores_index_row_actions" class="actions"> <%= link_to_edit store, :no_text => true %> <%= link_to_delete store, :no_text => true %> </td> </tr> <% end %> </tbody> </table>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
solidus_multi_domain-1.0.1 | app/views/spree/admin/stores/index.html.erb |
solidus_multi_domain-1.0.0 | app/views/spree/admin/stores/index.html.erb |