Pages: “<%= @page.title %>”

Content Blocks

<% if @page.content_blocks.count > 0 %> <% @page.content_blocks.each do |c| %> <% end %>
Title Created Updated
<%= link_to c.title, edit_manifest_content_block_path(c) %> <%= c.created_at.to_s(:short) %> <%= c.updated_at.to_s(:short) %>
<% else %>

This page has no content blocks of its own. <%= link_to('Add one!', new_manifest_content_block_path(content_block: { page_id: @page.id })) if current_editor.admin? %>

<% end %> <% if current_editor.admin? %> <%= link_to 'Edit Page', edit_manifest_page_path(@page) %> <%= link_to 'Delete Page', manifest_page_path(@page), method: :delete, confirm: "Are you sure you want to delete page \"#{@page.title}\"?" %> <% end %>