47 lines
2.3 KiB
Plaintext
47 lines
2.3 KiB
Plaintext
- content_for :head do
|
|
= javascript_include_tag 'admin/plugins/codemirror/codemirror', 'admin/plugins/wslide', 'admin/pages', 'admin/page_parts'
|
|
= stylesheet_link_tag 'admin/page_parts'
|
|
|
|
= f.foldable_inputs :name => :information do
|
|
|
|
= f.input :title
|
|
|
|
/ = f.input :layout_id, :as => :select, :collection => current_site.layouts.all.to_a, :input_html => { :data_url => admin_layout_page_parts_url('_id_to_replace_') }
|
|
|
|
- if not @page.index? and not @page.not_found?
|
|
= f.input :parent_id, :as => :select, :collection => parent_pages_options, :include_blank => false
|
|
|
|
= f.input :slug, :required => false, :hint => @page.slug.blank? ? ' ' : @page.url, :input_html => { :data_url => get_path_admin_pages_url, :disabled => @page.index? || @page.not_found? }, :wrapper_html => { :style => "#{'display: none' if @page.templatized?}" }
|
|
|
|
= f.custom_input :templatized, :css => 'toggle' do
|
|
= f.check_box :templatized
|
|
|
|
= f.input :content_type_id, :as => :select, :collection => current_site.content_types.all.to_a, :include_blank => false, :wrapper_html => { :style => "#{'display: none' unless @page.templatized?}" }
|
|
|
|
= f.custom_input :published, :css => 'toggle' do
|
|
= f.check_box :published
|
|
|
|
= f.input :cache_strategy, :as => :select, :collection => options_for_page_cache_strategy, :include_blank => false
|
|
|
|
= f.foldable_inputs :name => :code do
|
|
= f.custom_input :value, :css => 'code full', :with_label => false do
|
|
%code{ :class => 'html' }
|
|
= f.text_area :layout_template
|
|
/ .more
|
|
/ = link_to t('admin.image_picker.link'), admin_theme_assets_path, :id => 'image-picker-link'
|
|
|
|
/ #page-parts
|
|
/ .nav
|
|
/ - @page.parts.each_with_index do |part, index|
|
|
/ = link_to content_tag(:span, part.name), "#parts-#{index + 1}", :id => "control-part-#{part.slug}", :class => "part-#{index} #{'on' if index == 0}", :style => "#{'display: none' if part.disabled?}"
|
|
/ .clear
|
|
/
|
|
/ .wrapper
|
|
/ %ul{ :id => "parts" }
|
|
/ = f.fields_for :parts do |g|
|
|
/ %li{ :style => "#{'display: none' if g.object.disabled?}" }
|
|
/ = g.label :value, g.object.name, :style => "display:none"
|
|
/ %code= g.text_area :value
|
|
/ = g.hidden_field :name
|
|
/ = g.hidden_field :slug
|
|
/ = g.hidden_field :disabled, :class => 'disabled' |