Sha256: 35e47baa5a82a247960b861dbed44027b64e0afaa8856ff80215f431ad0e765d

Contents?: true

Size: 1.26 KB

Versions: 7

Compression:

Stored size: 1.26 KB

Contents

- title t('.title', :type => @content_type.name.capitalize)

- content_for :actions do
  = render 'locomotive/shared/actions/contents'

- content_for :buttons do
  - if can?(:manage, Locomotive::ContentType)
    = local_action_button :edit, edit_content_type_url(@content_type), :class => 'edit'

  = local_action_button :new, new_content_entry_url(@content_type.slug), :class => 'new'

- if @content_type.description.present?
  %p= @content_type.description

- if @content_type.groupable?
  - @content_entries.each do |group|
    .box
      %h3= group[:name] || t('.category_noname')
      .inner
        = render 'list', :content_type => @content_type, :entries => group[:entries]
- else
  = render 'list', :content_type => @content_type, :entries => @content_entries

- # Note: submenu has to be here in order to have the previous entries correctly rendered since we do not return
- #       all the attributes of the content types in the following code (causing stale documents)
- content_for :submenu do
  = render 'locomotive/shared/menu/contents'

- if can?(:manage, Locomotive::ContentType)
  #local-actions-bottom-bar
    %p.tleft
      = link_to t('.destroy'), content_type_url(@content_type), :confirm => t('locomotive.messages.confirm'), :method => :delete, :class => 'button remove'

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
locomotive_cms-2.0.0.rc8 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc7 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc6 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc5 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc4 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc2 app/views/locomotive/content_entries/index.html.haml
locomotive_cms-2.0.0.rc1 app/views/locomotive/content_entries/index.html.haml