Sha256: 34df0ad0dd4fc6e286c96ae5048c05cad5dd163e0fd195528c9b1c34c66d163c

Contents?: true

Size: 1.24 KB

Versions: 6

Compression:

Stored size: 1.24 KB

Contents

- title t('.title')

- content_for :submenu do
  = render 'admin/shared/menu/settings'

- content_for :buttons do
  = admin_button_tag t('admin.theme_assets.index.all'), all_admin_theme_assets_url, :class => 'show'
  = admin_button_tag t('admin.snippets.index.new'), new_admin_snippet_url, :class => 'new'
  = admin_button_tag :new, new_admin_theme_asset_url, :class => 'new'

%p!= t('.help')

%h3!= t('.snippets')
- if @snippets.empty?
  %p.no-items!= t('.no_items', :url => new_admin_snippet_url)
- else
  %ul.list.theme-assets
    = render @snippets

%br

%h3!= t('.css_and_js')
- if @js_and_css_assets.empty?
  %p.no-items!= t('.no_items', :url => new_admin_theme_asset_url)
- else
  %ul.list.theme-assets
    = render :partial => 'asset', :collection => @js_and_css_assets

%br

%h3!= t('.images')
- if @assets[:images].nil?
  %p.no-items!= t('.no_items', :url => new_admin_theme_asset_url)
- else
  %ul.list.theme-assets
    = render :partial => 'asset', :collection => @assets[:images]

- if @assets[:fonts]
  %br

  %h3!= t('.fonts')
  %ul.list.theme-assets
    = render :partial => 'asset', :collection => @assets[:fonts]

- if @assets[:media]
  %br

  %h3!= t('.media')
  %ul.list.theme-assets
    = render :partial => 'asset', :collection => @assets[:media]

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
locomotive_cms-0.0.4.beta5 app/views/admin/theme_assets/index.html.haml
locomotive_cms-0.0.4.beta4 app/views/admin/theme_assets/index.html.haml
locomotive_cms-0.0.4.beta3 app/views/admin/theme_assets/index.html.haml
locomotive_cms-0.0.4.beta2 app/views/admin/theme_assets/index.html.haml
locomotive_cms-0.0.4.beta1 app/views/admin/theme_assets/index.html.haml
locomotive_cms-0.0.4 app/views/admin/theme_assets/index.html.haml