Sha256: 5756634a9a7a38e6c3bea92df58183f42966afa74a2014ea2c401975660936c3
Contents?: true
Size: 829 Bytes
Versions: 2
Compression:
Stored size: 829 Bytes
Contents
<%= render :partial => 'admin/shared/configuration_menu' %> <h1><%= t("general_settings") %></h1> <table data-hook="preferences"> <% @preferences.each do |key| %> <tr> <th scope="row"><%= t(key) %>:</th> <td><%= Spree::Config[key] %></td> </tr> <% end %> <tr> <td colspan="2"> <%= (Spree::Config[:allow_ssl_in_production] ? t("ssl_will_be_used_in_production_mode") : t("ssl_will_not_be_used_in_production_mode")) %> </td> </tr> <tr> <td colspan="2"> <%= (Spree::Config[:allow_ssl_in_development_and_test] ? t("ssl_will_be_used_in_development_and_test_modes") : t("ssl_will_not_be_used_in_development_and_test_modes")) %> </td> </tr> </table> <p><%= link_to_with_icon 'edit', t("edit"), edit_admin_general_settings_path, :id => 'admin_general_settings_link' %></p>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
spree_core-0.70.0.rc2 | app/views/admin/general_settings/show.html.erb |
spree_core-0.70.RC1 | app/views/admin/general_settings/show.html.erb |