app/views/admin/layouts/index.html.haml in radiant-0.8.2 vs app/views/admin/layouts/index.html.haml in radiant-0.9.0.rc2

- old
+ new

@@ -1,37 +1,36 @@ -%h1 Layouts -- render_region :top do |top| - - top.help_text do - %p - Use layouts to apply a visual look to a Web page. Layouts can contain special tags to include - page content and other elements such as the header or footer. +- @page_title = t('layouts') + ' - ' + default_page_title -%table#layouts.index{:cellspacing=>"0", :border=>"0", :cellpadding=>"0" } - %thead - %tr - - render_region :thead do |thead| - - thead.title_header do - %th.layout - Layout - - thead.modify_header do - %th.modify - Modify - %tbody - - if @layouts.any? - - @layouts.each do |layout| - %tr.node.level-1 - - render_region :tbody do |tbody| - - tbody.title_cell do - %td.layout - = image('layout', :alt => 'layout-icon') - = link_to layout.name, edit_admin_layout_url(layout) - - tbody.modify_cell do - %td.remove - = link_to image('remove', :alt => 'Remove Layout'), remove_admin_layout_url(layout) - - else +.outset + = render_region :top + %table#layouts.index + %thead %tr - %td.note{:colspan => admin.layout.index.tbody.length} No Layouts + - render_region :thead do |thead| + - thead.title_header do + %th.layout + = t('layout') + - thead.modify_header do + %th.modify + = t('modify') + %tbody + - if @layouts.any? + - @layouts.each do |layout| + %tr.node.level_1 + - render_region :tbody do |tbody| + - tbody.title_cell do + %td.layout + = image('layout', :alt => '') + = link_to layout.name, edit_admin_layout_url(layout) + - tbody.modify_cell do + %td.remove + = link_to t('remove'), remove_admin_layout_url(layout) + - else + %tr + %td.empty{:colspan => admin.layout.index.tbody.length}= t('no_layouts') - render_region :bottom do |bottom| - bottom.new_button do - %p - = link_to image('new-layout', :alt => "New Layout"), new_admin_layout_url + #actions + = will_paginate(@layouts) + %ul + %li= link_to image('plus') + " " + t('new_layout'), new_admin_layout_url \ No newline at end of file