Sha256: 3c82d5400a8f0ddd4da3b2af06baf5536c6073d1396e20a376c892b3758e997f
Contents?: true
Size: 1.7 KB
Versions: 2
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', :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> </tr>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
beef-pages-0.3.19 | app/views/admin/pages/_page.html.erb |
beef-pages-0.3.18 | app/views/admin/pages/_page.html.erb |