Sha256: 1244fc084a72fe4607376fc1485091b6e7245efca82cc83a8c46bf351e6baf96

Contents?: true

Size: 1.01 KB

Versions: 6

Compression:

Stored size: 1.01 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.submit Alchemy.t(:save) %>
<% end %>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
alchemy_cms-3.3.3 app/views/alchemy/admin/languages/_form.html.erb
alchemy_cms-3.3.2 app/views/alchemy/admin/languages/_form.html.erb
alchemy_cms-3.3.1 app/views/alchemy/admin/languages/_form.html.erb
alchemy_cms-3.3.0 app/views/alchemy/admin/languages/_form.html.erb
alchemy_cms-3.3.0.rc2 app/views/alchemy/admin/languages/_form.html.erb
alchemy_cms-3.3.0.rc1 app/views/alchemy/admin/languages/_form.html.erb