Sha256: a568c70888a764fdc35ca8ac4d0932d7006e5d4aec17965c4cd7fe2e97cc897b

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

%ul
  = admin_submenu_item 'pages', admin_pages_url do
    .header
      %p= link_to t('admin.pages.index.new'), new_admin_page_url
    .inner
      %h2= t('admin.pages.index.lastest_items')
      %ul
        - current_site.pages.latest_updated.each do |page|
          %li
            = link_to truncate(page.title, :length => 25), edit_admin_page_url(page)
            %span= time_ago_in_words(page.updated_at)

  - current_site.content_types.each do |content_type|
    - item_on = (content_type.slug == @content_type.slug) rescue nil
    = admin_submenu_item content_type.name, admin_contents_url(content_type.slug), :i18n => false, :css => (item_on ? 'on' : '') do
      .header
        %p= link_to t('admin.contents.index.new'), new_admin_content_url(content_type.slug)
      .inner
        %h2= t('admin.contents.index.lastest_items')
        %ul
          - content_type.contents.latest_updated.each do |content|
            %li
              = link_to truncate(content.send(content_type.highlighted_field_name), :length => 30), edit_admin_content_path(content_type.slug, content)
              %span= time_ago_in_words(content.updated_at)
        
.action
  = link_to content_tag(:span, t('admin.content_types.index.new')), new_admin_content_type_url

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
locomotive_cms-0.0.3.3 app/views/admin/shared/menu/_contents.html.haml
locomotive_cms-0.0.3.1 app/views/admin/shared/menu/_contents.html.haml
locomotive_cms-0.0.2.9 app/views/admin/shared/menu/_contents.html.haml
locomotive_cms-0.0.2.8 app/views/admin/shared/menu/_contents.html.haml
locomotive_cms-0.0.2.7 app/views/admin/shared/menu/_contents.html.haml
locomotive_cms-0.0.2.6 app/views/admin/shared/menu/_contents.html.haml