Sha256: 8513d9912151b4342e0a769c43fd2f503bd7e3336e9ef644d6af7f180007d4be
Contents?: true
Size: 1.04 KB
Versions: 76
Compression:
Stored size: 1.04 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::PageLayout.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
76 entries across 76 versions & 1 rubygems