diff --git a/app/views/admin/pages/_form.html.haml b/app/views/admin/pages/_form.html.haml index 6e4944a3..e2d9bcee 100644 --- a/app/views/admin/pages/_form.html.haml +++ b/app/views/admin/pages/_form.html.haml @@ -9,9 +9,9 @@ - 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.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?}; height: 50px" } - = 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.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?}; height: 50px" } = f.custom_input :templatized, :css => 'toggle', :style => "#{'display: none' if @page.redirect?}" do = f.check_box :templatized @@ -19,8 +19,8 @@ = f.custom_input :published, :css => 'toggle' do = f.check_box :published - = f.custom_input :unlisted, :css => 'toggle', :style => "#{'display: none' if @page.templatized? || @page.redirect?}" do - = f.check_box :unlisted + = f.custom_input :listed, :css => 'toggle' do + = f.check_box :listed = f.custom_input :redirect, :css => 'toggle', :style => "#{'display: none' if @page.templatized?}" do = f.check_box :redirect