app/views/admin/pages/_page.html.erb in beef-pages-0.3.17 vs app/views/admin/pages/_page.html.erb in beef-pages-0.3.18

- old
+ new

@@ -6,10 +6,10 @@ <td><%= page.editor %></td> <td class="date"><%= page.updated_at.to_formatted_s(:short) %></td> <td class="date"><%= page.created_at.to_formatted_s(:short) %></td> <td class="date"><%= page.published_at.to_formatted_s(:short) unless page.published_at.nil? %></td> <td class="date"><%= page.published_to.to_formatted_s(:short) unless page.published_to.nil? %></td> - <td class="action"><%= link_to 'Show', page_path(page.permalink), :class => 'show' if page.published?, :title => 'View this page' %></td> + <td class="action"><%= link_to 'Show', page_path(page.permalink), :class => 'show', :title => 'View this page' if page.published? %></td> <td class="action"><%= link_to 'Add page', new_admin_page_page_path(page), :class => 'add', :title => "Add a sub-page under #{page.title}" unless page.lock_level >= Page::LOCK_LEVEL_SUBPAGE %></td> <td class="action"><%= link_to 'Edit', [:admin, page], :class => 'edit', :title => 'Edit this page' %></td> <td class="action"><%= link_to('Delete', admin_page_path(page), :confirm => 'Are you sure?', :method => :delete, :class => 'delete', :title => 'Delete this page') unless page.lock_level >= Page::LOCK_LEVEL_DELETE %></td> <td class="action"><%= link_to 'up', move_up_admin_page_path(page), { :class => "page_up", :title => 'Move this page higher in the navigation' } unless page.first? %></td> <td class="action"><%= link_to 'down', move_down_admin_page_path(page), { :class => 'page_down', :title => 'Move this page lower in the navigation' } unless page.last? %></td> \ No newline at end of file