2011-08-11 20:45:46 +00:00
|
|
|
- if breadcrumb_root
|
|
|
|
- title t('.title.breadcrumb', :root => link_to(breadcrumb_root._label, breadcrumb_url), :type => @content_type.name.capitalize)
|
|
|
|
- else
|
|
|
|
- title t('.title.default', :type => @content_type.name.capitalize)
|
2011-06-26 00:01:11 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
- content_for :submenu do
|
2011-11-08 00:11:15 +00:00
|
|
|
= render 'locomotive/shared/menu/contents'
|
2011-06-26 00:01:11 +00:00
|
|
|
|
2011-04-27 05:18:02 +00:00
|
|
|
- content_for :actions do
|
2011-11-08 00:11:15 +00:00
|
|
|
= render 'locomotive/shared/actions/contents'
|
2010-05-25 00:32:12 +00:00
|
|
|
|
2010-07-23 23:57:18 +00:00
|
|
|
- content_for :buttons do
|
2011-11-08 14:34:25 +00:00
|
|
|
- if can?(:manage, Locomotive::ContentType)
|
|
|
|
= local_action_button t('locomotive.contents.index.edit'), edit_content_type_url(@content_type), :class => 'edit'
|
2011-06-26 00:01:11 +00:00
|
|
|
|
2011-11-08 14:34:25 +00:00
|
|
|
= local_action_button t('locomotive.contents.index.new'), new_content_url(@content_type.slug), :class => 'new'
|
2010-05-25 00:32:12 +00:00
|
|
|
|
|
|
|
%p= @content_type.description
|
|
|
|
|
2011-10-31 23:44:23 +00:00
|
|
|
= semantic_form_for @content, :as => :content, :url => content_url(@content_type.slug, @content), :html => { :multipart => true, :class => 'save-with-shortcut' } do |form|
|
2010-05-25 00:32:12 +00:00
|
|
|
|
|
|
|
= render 'form', :f => form
|
|
|
|
|
2011-11-08 00:11:15 +00:00
|
|
|
= render 'locomotive/shared/form_actions', :back_url => back_url, :button_label => :update
|