34 lines
1.5 KiB
Plaintext
34 lines
1.5 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? }
|
|
|
|
= f.custom_input :published, :css => 'toggle' do
|
|
= f.check_box :published
|
|
|
|
= f.input :cache_expires_in, :as => :select, :collection => options_for_page_cache_expiration, :include_blank => false
|
|
|
|
#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?}" }
|
|
%code= g.text_area :value
|
|
= g.hidden_field :name
|
|
= g.hidden_field :slug
|
|
= g.hidden_field :disabled, :class => 'disabled' |