19 lines
742 B
Plaintext
19 lines
742 B
Plaintext
- title t('.title', :type => @content_type.name.capitalize)
|
|
|
|
- content_for :submenu do
|
|
= render 'locomotive/shared/menu/contents'
|
|
|
|
- content_for :actions do
|
|
= render 'locomotive/shared/actions/contents'
|
|
|
|
- if can?(:manage, Locomotive::ContentType)
|
|
- content_for :buttons do
|
|
= local_action_button t('locomotive.content_entries.index.edit'), edit_content_type_url(@content_type), :class => 'edit'
|
|
|
|
%p= @content_type.description
|
|
|
|
= semantic_form_for @content_entry, :as => :content_entry, :url => content_entries_url(@content_type.slug), :html => { :multipart => true } do |form|
|
|
|
|
= render 'form', :f => form
|
|
|
|
= render 'locomotive/shared/form_actions', :back_url => content_entries_url(@content_type.slug), :button_label => :create |