app/views/admin/pages/_page.html.erb in beef-pages-0.2.5 vs app/views/admin/pages/_page.html.erb in beef-pages-0.2.6

- old
+ new

@@ -1,16 +1,16 @@ <tr id="pages-<%= page.id %>"> - <td class="title"><%= link_to page.title, admin_page_pages_path(page) %></td> + <td class="title"><%= link_to page.title, admin_page_path(page) %></td> <td><%= link_to pluralize(page.children.count, "sub page"), admin_page_pages_path(page) %></td> <td><%= content_status(page) %></td> <td><%= page.author %><br />(<%= page.created_at.to_formatted_s(:short) %>)</td> <td><%= page.editor %><%= "<br />(#{page.updated_at.to_formatted_s(:short)})" unless page.updated_at.nil? %></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><%= link_to 'Show', page_path(page.permalink), :class => 'show' if page.published? %></td> <td><%= link_to 'Add page', new_admin_page_page_path(page), :class => 'add', :title => "Add a sub-page under #{page.title}" %></td> <td><%= link_to 'Edit', [:admin, page], :class => 'edit' %></td> - <td><%= link_to('Destroy', admin_page_path(page), :confirm => 'Are you sure?', :method => :delete, :class => 'delete') unless page.parent_id.nil? || !current_user.admin? %></td> + <td><%= link_to('Destroy', admin_page_path(page), :confirm => 'Are you sure?', :method => :delete, :class => 'delete') unless page.lock_level >=1 || !current_user.admin? %></td> <td> <%= link_to 'up', move_up_admin_page_path(page), { :class => "page_up" } if current_user.admin? && !page.first? %> <%= link_to 'down', move_down_admin_page_path(page), { :class => 'page_down' } if current_user.admin? && !page.last? %> </td> </tr> \ No newline at end of file