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)
|
2010-05-25 00:32:12 +00:00
|
|
|
|
|
|
|
- content_for :submenu do
|
|
|
|
= render 'admin/shared/menu/contents'
|
2011-08-11 20:45:46 +00:00
|
|
|
|
2011-04-27 05:18:02 +00:00
|
|
|
- content_for :actions do
|
|
|
|
= render 'admin/shared/actions/contents'
|
2010-07-23 23:51:43 +00:00
|
|
|
|
2011-06-26 00:01:11 +00:00
|
|
|
- if can?(:manage, ContentType)
|
|
|
|
- content_for :buttons do
|
|
|
|
= admin_button_tag t('admin.contents.index.edit'), edit_admin_content_type_url(@content_type), :class => 'edit'
|
2010-07-23 23:51:43 +00:00
|
|
|
|
2010-05-25 00:32:12 +00:00
|
|
|
%p= @content_type.description
|
|
|
|
|
2010-07-13 00:46:17 +00:00
|
|
|
= semantic_form_for @content, :as => :content, :url => admin_contents_url(@content_type.slug), :html => { :multipart => true } do |form|
|
2010-05-25 00:32:12 +00:00
|
|
|
|
|
|
|
= render 'form', :f => form
|
2010-07-23 23:51:43 +00:00
|
|
|
|
2011-08-11 20:45:46 +00:00
|
|
|
= render 'admin/shared/form_actions', :back_url => back_url, :button_label => :create
|