Sha256: d56471e59d264a7f254509233cf54d25ecb4c81e9bd4ceb230307ea7089cd100
Contents?: true
Size: 1.03 KB
Versions: 32
Compression:
Stored size: 1.03 KB
Contents
<%= alchemy_form_for [alchemy, :admin, language] do |f| %> <%= f.input :name, autofocus: true %> <%= f.input :language_code, placeholder: Alchemy.t(:language_code_placeholder) %> <%= f.input :country_code, as: 'string', placeholder: Alchemy.t(:country_code_placeholder), hint: Alchemy.t(:country_code_foot_note) %> <% if language.errors[:locale].present? || language.locale.present? %> <%= f.input :locale, collection: language.matching_locales.presence || ::I18n.available_locales, selected: language.locale || language.language_code || ::I18n.default_locale.to_s, input_html: {class: 'alchemy_selectbox'} %> <% end %> <%= f.input :frontpage_name %> <%= f.input :page_layout, collection: Alchemy::PageLayout.all, label_method: ->(p) { Alchemy::Page.human_layout_name(p['name']) }, value_method: ->(p) { p['name'] }, input_html: {class: 'alchemy_selectbox'} %> <%= f.input :public %> <%= f.input :default %> <%= f.hidden_field :site_id %> <%= f.submit Alchemy.t(:save) %> <% end %>
Version data entries
32 entries across 32 versions & 1 rubygems