Sha256: 4cb8817ebcb5f782218ff5a91cfa53572b73394ed7d827db2bb9d4e3267a0b9f
Contents?: true
Size: 1.7 KB
Versions: 1
Compression:
Stored size: 1.7 KB
Contents
<tr id="pages-<%= page.id %>"> <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 %></td> <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 '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> </tr>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
beef-pages-0.3.17 | app/views/admin/pages/_page.html.erb |