60 lines
2.4 KiB
Plaintext
60 lines
2.4 KiB
Plaintext
<%= f.error_messages %>
|
|
<%= f.hidden_field :parent, :value => (@item.parent.id rescue nil) %>
|
|
|
|
<div class="control-group">
|
|
<%= f.label :name, t(:name), :class => 'control-label' %>
|
|
<div class="controls">
|
|
<%= f.text_field :name, :class => 'text input-xlarge' %>
|
|
<!-- <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p> -->
|
|
</div>
|
|
</div>
|
|
|
|
<%= f.fields_for :title_translations do |f| %>
|
|
<% @site_valid_locales.each do |locale| %>
|
|
<div class="control-group">
|
|
<%= f.label :locale, "#{t(:title)} #{I18nVariable.from_locale(locale)}", :class => 'control-label' %>
|
|
<div class="controls">
|
|
<%= f.text_field locale, :class => 'text input-xlarge', :value => (@item.title_translations[locale] rescue nil) %>
|
|
<!-- <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p> -->
|
|
</div>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
|
|
<div class="control-group">
|
|
<%= f.label :is_published, "#{t(:is_published)} ?", :class => 'control-label' %>
|
|
<div class="controls">
|
|
<label class="radio">
|
|
<%= f.radio_button :is_published, true %>
|
|
Yes
|
|
</label>
|
|
<label class="radio">
|
|
<%= f.radio_button :is_published, false %>
|
|
No
|
|
</label>
|
|
<!-- <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p> -->
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<%= f.label :menu_enabled_for, "#{t(:menu_enabled_for)}:", :class => 'control-label' %>
|
|
<div class="controls">
|
|
<% @site_valid_locales.each do |valid_locale| %>
|
|
<label class="checkbox">
|
|
<%= check_box_tag 'link[menu_enabled_for][]', valid_locale, (@item.menu_enabled_for.nil? ? true : @item.menu_enabled_for.include?(valid_locale)) %>
|
|
<%= I18nVariable.from_locale(valid_locale) %>
|
|
</label>
|
|
<% end %>
|
|
<%= hidden_field_tag 'link[menu_enabled_for][]', '' %>
|
|
<!-- <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p> -->
|
|
</div>
|
|
</div>
|
|
|
|
<div class="control-group">
|
|
<%= f.label :url, "#{t(:url)}:", :class => 'control-label' %>
|
|
<div class="controls">
|
|
<%= f.text_field :url, :class => 'text input-xlarge', :value => (@item.url rescue nil) %>
|
|
<!-- <p class="help-block">In addition to freeform text, any HTML5 text-based input appears like so.</p> -->
|
|
</div>
|
|
</div>
|